Afficher la liste des utilisateurs dans 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;
Snippets