查看MYSQL数据库中所有用户及拥有权限

查看MYSQL数据库中所有用户
mysql> SELECT DISTINCT CONCAT('User: ''',user,'''@''',host,''';') AS query FROM mysql.user;
查看数据库中具体某个用户的权限
mysql> show grants for 
'cactiuser'@'%';  
select * from mysql.user where user='cactiuser'



原文地址:https://www.cnblogs.com/zhangboyu/p/7449229.html