数据库
首页 > 数据库> > 解决报错:Variable 'sql_mode' can't be set to the value of 'NULL'

解决报错:Variable 'sql_mode' can't be set to the value of 'NULL'

作者:互联网

用软件导出的数据文件,用source或者软件导入的时候常常有一些类似报错:

Variable 'sql_mode' can't be set to the value of 'NULL'解决方法

产生原因:

这是由于导出的sql数据文件中的某些注释语句比如下面的注释语句引起的

 .........

0./*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
0./*!40014 SET NAMES UTF8*/

.........

解决方法:

删除注释语句

 

 

 

 

转自 http://www.blogdaren.com/post-2065.html

标签:语句,set,.........,value,注释,报错,sql
来源: https://www.cnblogs.com/juanxincai/p/16267931.html