Mysql 8.0版本导出的sql文件在Mysql 5.5中运行出错
出现错误
[err] 1064 - you have an error in your sql syntax; check the manual that corresponds to your mysql server version for the right syntax to use near '(0) null default current_timestamp(0) on update current_timestamp(0),
`descri' at line 8
解决思路
关于timestamp错误可以参考:
即使修改了mysql的model,依旧有很多错误:
mysql 8.0和mysql 5.7还是有很大的不同的
详细的可以参考:https://blog.csdn.net/cn_mengxin/article/details/81518800
解决办法:更换mysql 8.0吧,毕竟想要在mysql5.5上运行要改的太多太多
发现过程
1. sql文件中开头注释的含义
navicat premium data transfer
source server : link1 (源服务器)
source server type : mysql (源服务器类型)
source server version : 80018 (源服务器版本)
source host : 127.0.0.1:3306 (源主机)
source schema : lanyue_v_3 (源数据库名称)
target server type : mysql (目标服务器类型)
target server version : 80018 (目标服务器版本)
file encoding : 65001 (支持编码)
date: 06/11/2019 16:09:17 (日期)
使用注释,当在其他数据库中会被当做注释处理,而在mysql中,会执行这些注释(mysql通过注释的方式对sql进行拓展)
2. 如何查看自己的mysql版本:
第一步:进入cmd命令窗口
第二步:进入mysql的bin目录下
-
第三步:输入
mysql -hlocalhost -uroot -proot
-u后的root为用户名、-p后的root为密码、-h为服务器地址
第四步:输入
status;
3. 对比mysql5.5 和 mysql 8.0sql文件
发现sql语句也多了,明显 5.5 和 8.0不兼容
上一篇: 来自闲鱼的虎头蜂,我差点就信了!
下一篇: linux 命令之touch