does anyone has a SQL handy to run and get a list of users belonging to the same group?
thanks in advance
SELECT DISTINCT u.first_name, u.last_name, u.email_address, u.user_name FROM `cwd_membership` m INNER JOIN `cwd_user` u ON m.child_id = u.id WHERE `parent_id` IN ( SELECT id FROM `cwd_group` WHERE group_name LIKE 'ABC%' ) AND membership_type LIKE 'GROUP_USER'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.