Skip to content

Instantly share code, notes, and snippets.

@altayalp
Created July 3, 2016 13:55
Show Gist options
  • Save altayalp/a48d4fada28199804530995bd4422fc0 to your computer and use it in GitHub Desktop.
Save altayalp/a48d4fada28199804530995bd4422fc0 to your computer and use it in GitHub Desktop.
Get a list of MySQL user accounts
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