mysql查看用户列表,查看用户授权,创建用户授权,删除用户
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql查看用户列表,查看用户授权,创建用户授权,删除用户相关的知识,希望对你有一定的参考价值。
查看用户列表
select from host,user,password from mysql.user;
查看授权
show grants for [email protected];
建用户授权
grant all privileges on . to [email protected] identified by ‘123456‘;
删除用户
delete from mysql.user user=‘root‘
delete from mysql.user where user=‘root‘ and ip=‘localhost‘;
以上是关于mysql查看用户列表,查看用户授权,创建用户授权,删除用户的主要内容,如果未能解决你的问题,请参考以下文章