how to view all users in mysql code example
Example 1: mysql list users on ubuntu
SELECT User FROM mysql.user;
Example 2: how to show all users in mysql
SELECT user FROM mysql.user;
Example 3: show all users in mysql
mysql> select * from mysql.user;