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'
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.