mysql get all users and privileges code example
Example 1: see all users mysql
mysql> select host, user, password from mysql.user;
Example 2: mysql check user privileges
SHOW GRANTS FOR 'root'@'localhost';
Example 3: show all users in mysql
mysql> select * from mysql.user;