Answers for "how to check users in mysql database"

SQL
9

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
0

How to check current user in mySQL

SELECT USER();
Posted by: Guest on September-06-2021

Code answers related to "how to check users in mysql database"

Code answers related to "SQL"

Browse Popular Code Answers by Language