How do I find the list of users in my server?
mySQL | Explination | SQL Server |
select * from mysql.user; | Gets the list of users in the server | select * from sys.syslogins; |
** Don't forget to end your mySQL query with "\G" if running from the command line, as the user table is wide
No comments:
Post a Comment