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: 

SQL query to get the user details based on the email address

Kishore
June 16, 2020

Hi All,

Is there any SQL query to get the user details like username, email_address, Full name, display name, groups that are associated with the user, and last login. 

Regards,
Kishore.

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Kishore
June 16, 2020

I figured it out. Here is the SQL query:

 

select DISTINCT u.USER_NAME, u.display_name, u.email_address, array_to_string(array_agg(g.group_name), ', ') as "Group Names"
from cwd_user u JOIN cwd_directory d ON u.DIRECTORY_ID = d.id
JOIN cwd_group g ON d.id = g.DIRECTORY_ID
where u.LOWER_EMAIL_ADDRESS = 'Email_address'
group by u.USER_NAME, u.display_name, u.email_address

 

Stan Dalenc
April 20, 2022

awesome thanks

0 votes
Nic Brough -Adaptavist-
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.
June 16, 2020

Read cwd_user for the list of accounts and most of that data.

Join it to cwd_membership  to see the groups (and cwd_group if you want to see the names of the groups rather than the ids)

Kishore
June 16, 2020

Hi @Nic Brough -Adaptavist- ,

I verified cwd_user, cwd_membership, cwd_group, and cwd_directory tables. But I did not found any common column for the cwd_membership with remaining tables to write a join query.

Regards,
Kishore.