show list of users in mysql code example
Example 1: mysql show users
select * from mysql.user;
select user, host from mysql.user;
Example 2: show list of users in mysql
select * from mysql.user;
select User,Host from mysql.user;
Example 3: display users in mysql
select * from mysql.user;
select user, host from mysql.user;
Example 4: how to show all users in mysql
SELECT user FROM mysql.user;
Example 5: show all users in mysql
mysql> select * from mysql.user;
Example 6: SELECT User,Host FROM mysql.user;
SELECT User,Host FROM mysql.user;
DROP USER 'testuser'@'localhost';