MySQL
文章平均质量分 84
MySQL
冷漠;
我很懒,还没有添加简介
展开
-
MySQL报错:ERROR 1118 (42000): Row size too large. 或者 Row size too large (> 8126).
ERROR 1118 (42000): Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs.Row size too large (> 8126).原创 2022-10-25 18:18:16 · 22845 阅读 · 0 评论 -
MySQL中存储的数据查询的时候区分大小写问题
涉及字符串的各种运算其核心必然涉及到采用何种字符排序规则(COLLATE,也有翻译为"核对")。本质上 MySQL 是通过 COLLATE 取值决定字符串运算是否大小写敏感。`utf8_general_ci` 是一个具体的 COLLATE 取值。每个具体的 COLLATE 都对应唯一的字符集,可以看出该 COLLATE 对应字符集为 `utf8`。而与大小写敏感问题相关的是其后缀 `_ci`,MySQL 官方文档对其的解释是 **`Case Ignore`** 的缩写,即大小写不敏感。由于 MySQL原创 2022-10-20 18:24:23 · 6605 阅读 · 1 评论 -
MySQL索引
MySQL索引 index原创 2022-09-26 18:45:19 · 218 阅读 · 0 评论 -
MySQL/Oracle 存储过程 表名互换
MySQL 存储过程 表名互换原创 2022-09-26 16:51:52 · 800 阅读 · 0 评论 -
Mysql中date_format()函数及interval关键字的用法
Mysql中date_format()函数及interval关键字的用法原创 2022-07-05 15:46:54 · 6800 阅读 · 2 评论 -
CentOS7.2离线(rpm)安装MySQL-5.7.30
一、 查看linux操作系统版本和系统内核版本查看操作系统版本[root@node03 ~]# cat /etc/redhat-releaseCentOS Linux release 7.2.1511 (Core)查看系统内核版本[root@node03 ~]# uname -aLinux node03 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux二、 下载对原创 2020-11-26 09:48:44 · 415 阅读 · 0 评论