I want to get a list of users that belong to a group, my query is
SELECT user_name, first_name, last_name FROM cwd_user WHERE ID IN(SELECT child_id FROM cwd_membership WHERE parent_name = 'AIR_CAT_WRITE_GRP')
This query works fine in as SQL in SQL Manager, however get no results in nFeed. If I simplify the query to use use just one table like this:
SELECT user_name, first_name,last_name
FROM cwd_user
WHERE id IN (23171,24282)
I still get no results. However, if I change the query to
SELECT user_name, first_name,last_name
FROM cwd_user
WHERE user_name LIKE '%req83%'
I get results. So, it appears that I can't use the SQL keyword "IN"? Is there another method to get what I am looking for?
formatting error. All is well.
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.