Answers for "how to show users on mysql from terminal"

SQL
8

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;
Posted by: Guest on October-22-2020
4

display users in mysql

#display all user data
select * from mysql.user;
#display username and host
select user, host from mysql.user;
Posted by: Guest on December-02-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language