mysql select users from database code example
Example 1: see all users mysql
mysql> select host, user, password from mysql.user;
Example 2: display users in mysql
#display all user data
select * from mysql.user;
#display username and host
select user, host from mysql.user;