insert into mysql.user(Host,User,Password) values("localhost","abc123",password("456789"))
这个是建立用户,然后是授权,用grant命令
grant select, insert, update, delete on testdb.* to 123456
grant 权限集 on 数据库.表 to 用户
欢迎分享,转载请注明来源:内存溢出
insert into mysql.user(Host,User,Password) values("localhost","abc123",password("456789"))
这个是建立用户,然后是授权,用grant命令
grant select, insert, update, delete on testdb.* to 123456
grant 权限集 on 数据库.表 to 用户
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)