Hi all, so I am trying to create a query that gets...
# general
j
Hi all, so I am trying to create a query that gets a list of unique user names from each of my servers.
Copy code
SELECT DISTINCT username FROM users
I don't care about each individual servers users, I am trying to get a list together of all unique usernames across all servers. Basically if 2 servers have a user with the same username, I only want the username. Is there a way to pull this info?