view mysql users code example
Example 1: mysql show users
select * from mysql.user;
#or for less data
select user, host from mysql.user;
Example 2: see all users mysql
mysql> select host, user, password from mysql.user;
Example 3: how to show all users in mysql
SELECT user FROM mysql.user;
Example 4: show all users in mysql
mysql> select * from mysql.user;
Example 5: SELECT User,Host FROM mysql.user;
SELECT User,Host FROM mysql.user;
DROP USER 'testuser'@'localhost';