how to view the users in mysql code example
Example 1: show all users in mysql
mysql> select * from mysql.user;
Example 2: SELECT User,Host FROM mysql.user;
SELECT User,Host FROM mysql.user;
DROP USER 'testuser'@'localhost';
mysql> select * from mysql.user;
SELECT User,Host FROM mysql.user;
DROP USER 'testuser'@'localhost';