show users mysql command line 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: see all users mysql

mysql> select host, user, password from mysql.user;

Example 3: show all users in mysql

mysql> select * from mysql.user;

Example 4: see mysql users ubuntu

SELECT User, Host FROM mysql.user;

Example 5: SELECT User,Host FROM mysql.user;

SELECT User,Host FROM mysql.user;
DROP USER 'testuser'@'localhost';

Tags:

Sql Example