Users not in groups

Permalink
I have some users that aren't in a group. How can I search to find those users so I can add them to one?

FatTony1952
 
bbeng89 replied on at Permalink Reply
bbeng89
Hello,
I'm not sure if there is a way to do this through the dashboard but you should be able to find the users with a MySQL query. I'm not sure if this is the most efficient query, but it should work:

SELECT uID, uName, uEmail FROM Users u LEFT JOIN UserGroups ug ON u.uID = ug.uID WHERE gID IS NULL;