码迷,mamicode.com
首页 > 数据库 > 详细

mysql创建用户报错ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value

时间:2019-08-15 14:28:38      阅读:118      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!