The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How I can know that users are only included in a group?

Eva Fernández
October 19, 2016

Hello,

How I can know that users are only included in a group?

 

Now the query, I see users who are in a group. But I need to see those who are only in a particular group. I want to see that users are "only" included in the "jira-users" group.

 

    select * from jira.cwd_membership where parent_name = 'jira-users';

 

Thank!!!

Eva - from spain

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Answer accepted
Peter Geshev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 19, 2016

Hi Eva,

You can try the following query 

SELECT m.* 
FROM cwd_membership m
LEFT JOIN cwd_membership m1 ON m1.CHILD_ID = m.CHILD_ID AND m1.PARENT_ID <> m.PARENT_ID
WHERE m.parent_name = 'jira-users' AND m1.id IS NULL

Regards,

Peter

Eva Fernández
October 19, 2016
it works!! Thank you very much!

Eva