报错如下:
SequelizeDatabaseError: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'cloud.DeviceGame.device_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
原因:这是因为数据库默认sql_mode=only_full_group_by导致的错
首先,在my.ini中的[mysqld]下添加
sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
重启mysql服务生效。
重启mysql服务会报错(服务无法启动),解决方法如下:
1.把mysql路径下的bin目录内的data文件删除,注意是删除data,不是清空data
2.管理员运行cmd进入bin目录,输入mysqld --initialize
初始化mysql,这时候就多了data文件夹
3.再输入net start mysql,启动成功
如果还是启动不成功,你看看你my.ini是否添加了skip....没删的
4.再net stop mysql,输入mysqld --console --skip-grant-tables --shared-memory
进行8.0版本以上的免密登录,要使用这种命令行方式(亲测,那种在my.ini输入skip ....是没用的)
5.管理员运行另一个cmd,输入mysql -u root -p,直接enter
6.最后一步,设置密码,ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
如果报错1290,就
flush privileges;
再输入一次,即可。
网友评论