To show all MySQL databases, you can simply type SHOW DATABASES;
or SHOW TABLES;
to show all tables of the current database. However, if you want to list and display all the MySQL users, SHOW USERS;
won’t work.
So how to display a list of the MySQL users?
As all user information such as user name and privilege data are stored in the table user of the database mysql that comes automatically created and populated after MySQL installation. You can show all the MySQL users of the current host by the following select query:
SELECT user FROM mysql.user;
Which would output a list of rows of all the active users, in the same format of what a SHOW DATABASES;
would do.
I think “show grants” is also an option. MySQL is quirky 🙂
You can say that again!
Tell me about it. 🙂
Thanks,,! that helped..! New with Mysql, was trying show users; show users(); select users() and all sort of things..!
Or, more correctly:
select user,host,grant_priv from mysql.user;
thanks it is useful
Wow,….Very helpful
very helpfull