Answers for "sql statement to return all users in database"

SQL
3

sql show all users

#show all users and hosts
SELECT User, Host FROM mysql.user;

# show all users with passwords
SELECT User, Host, Password, password_expired FROM mysql.user;
Posted by: Guest on October-19-2021
1

sql server get users

select * from master.sys.server_principals
Posted by: Guest on January-30-2020

Code answers related to "sql statement to return all users in database"

Code answers related to "SQL"

Browse Popular Code Answers by Language