mysql
小萨技术
无
展开
-
mysql 类型
mysqlJavatinyint(1)BooleanbigintLongtextString原创 2019-03-14 09:08:19 · 85 阅读 · 0 评论 -
mysql 常见问题
硬盘已满 Disk is full writingmysql8 默认开启binlog 数据库访问量过大 导致日志文件沾满硬盘 最终导致redis服务器崩溃 mysql无法访问 等等情况出现如下错误The manual page at http://dev.mysql.com/doc/mysql/en/crashing.html containsinformation that sho...原创 2019-03-14 09:08:37 · 954 阅读 · 0 评论 -
mysql 常用语句
创建表主键自动增长id int primary key auto_increment comment '唯一标识符'创建表时添加外键 跟随删除和修改foreign key (userId) references user(id) on delete cascade on update cascade双主键primary key (userId,taskId)创建表creat...原创 2019-03-14 09:09:01 · 94 阅读 · 0 评论 -
springboot mysql emoji 问题
做微信时发现用户昵称中有emoji 字符 导致数据库插入时出现问题异常信息### Error updating database. Cause: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x92\x97C' for column 'nickName' at row 1### The error may involve ...原创 2019-03-14 09:10:52 · 879 阅读 · 0 评论