1. 插入大文本字段类型应为LONGTEXT
参考: https://blog.csdn.net/keepuping/article/details/53303085
2. delete 语句不支持别名;
3.MySQL 5.7 关键字和保留字
https://blog.csdn.net/qq_34754363/article/details/51669214
4. 上一篇下一篇
https://blog.csdn.net/aerchi/article/details/22728155
5. 当某一列的值全是 NULL 时,count(col)的返回结果为 0,但 sum(col)的返回结果为
NULL,因此使用 sum()时需注意 NPE 问题。
可以使用如下方式来避免 sum 的 NPE 问题:
SELECT IF(ISNULL(SUM(g)),0,SUM(g))
FROM table;
6. 表必备三字段:id, gmt_create, gmt_modified。
其中 id 必为主键,类型为 unsigned bigint、单表时自增、步长为 1。gmt_create,
gmt_modified 的类型均为 date_time 类型,
7. 按日、周、月进行分组统计
https://blog.csdn.net/lz_peter/article/details/78722976
8.日期区间查询问题
https://blog.csdn.net/qq122453418/article/details/79102412
9. mysql(6) : 时间转毫秒值
https://blog.csdn.net/Lxinccode/article/details/83062146
10. 随机更新时间
https://blog.csdn.net/sygaton/article/details/79437077
11. 批量更新
https://www.cnblogs.com/ldj3/p/9288187.html
12. 获取年月日时分秒等
https://blog.csdn.net/qq_33355858/article/details/80576149
https://www.cnblogs.com/xiaoxitest/p/6122960.html
13. 时间格式化
https://www.cnblogs.com/sigm/p/6054797.html
14. 函数
https://www.cnblogs.com/xuyulin/p/5468102.html
END。