mysql linux prompt check users code example
Example 1: show list of users in mysql
//To show all data use following query
select * from mysql.user;
// To show user and host use following query
select User,Host 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;
Example 3: see mysql users ubuntu
SELECT User, Host FROM mysql.user;