I want to make the following query
select group_name,i_all_users_namesfrom dm_group
But I don´t know if is possible to get every group in only one row with its different users separated with commas, is it possible??
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Hi,
Just add some single attribute to your query, like this:
select r_object_id, group_name, i_all_users_names from dm_group
~ Konstantin
Thank you!