标签:int 错误 user mys http ima 用户表 password cipher
使用如下语句添加用户:
insert into mysql.user(Host,User,Password) values ("%","aas","Aas123456");
错语原因:
mysql用户表的中某些字段不能为空,没有默认值,其实是操作错误,mysql添加用户是不能这样直接insert user表的。
解决:
create user ‘aas‘@‘%‘ identified by ‘Aas123456‘;
mysql创建用户报错ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value
标签:int 错误 user mys http ima 用户表 password cipher
原文地址:https://www.cnblogs.com/DreamFather/p/11357607.html