SQL to SELECT all groups belonging to a specific member ID AND all the users that belong to each group – Phpmyadmin
I have three tables, the relevant parts of which are: users users.userID, users.userNickname groups groups.groupID, groups.groupOwner, groups.groupName mapFriendsGroups mapFriendsGroups.userID, mapFriendsGroups.groupID To be clear, the functionality is that a primary user can create new groups which appear in the groups table.…