
mysql
Hero_孙
JAVA是最好的语言!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql 相关知识点
首次使用mysql导出时,报错 The MySQL server is running with the --secure-file-priv option so it cannot execute this statement 出错原因:没有设置导出的路径 show variables like '%secure%'; 解决方法: 在my.ini中增加配置 secure-f...原创 2018-05-28 17:13:09 · 160 阅读 · 0 评论 -
mysql中设置时区
首先,查看下mysql中使用的时区 show variables like '%time_zone%'; 测试查看下时间 select now(); 2018-10-24 15:49:17 这个应该是没有设置时区 1 通过命令修改 设置为 东八区 set global time_zone = '+8:00'; 重启连接之后,查看 show variables l...原创 2018-10-24 16:25:20 · 48039 阅读 · 0 评论