Created
July 3, 2016 13:55
-
-
Save altayalp/a48d4fada28199804530995bd4422fc0 to your computer and use it in GitHub Desktop.
Get a list of MySQL user accounts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select user from mysql.user; | |
# or | |
select user, host from mysql.user; | |
# or | |
select * from mysql.user; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment