数据库
首页 > 数据库> > Mysql 1231 'time_zone' can't be set to the value of 'NULL'

Mysql 1231 'time_zone' can't be set to the value of 'NULL'

作者:互联网

[ERR] 1231 - Variable 'time_zone' can't be set to the value of 'NULL'

问题描述

workbench导出数据库生成的sql文件运行时报错1231

解决方案

网上流行的修改max_allowed_packet大小的方法并不适用于我所面临的这个问题,当然workbench默认的sql生成是把表中大量数据写到一条sql中,也会造成默认的max_allowed_packet不够而导致mysql server gone away的错误

打开sql文件,CTRL+F查找TIME_ZONE字段,找到下面这句(一般在文末)并删除

/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

标签:workbench,set,1231,ZONE,sql,TIME,zone
来源: https://www.cnblogs.com/Do-n/p/16440697.html