Log in

View Full Version : query help please - usergroups


SDB
07-10-2007, 07:23 AM
Hi

From a MySQL prompt (or basically anywhere) I'm looking to return a list of members who are a member of usergroup 10 and also of usergroup 20.

Any assistance with the query to do this would be great.

Cheers
Simon

Eikinskjaldi
07-10-2007, 07:46 AM
select * from user where usergroupid=10 or usergroupid=20;

SDB
07-10-2007, 07:50 AM
not quite sir, but thank you for your reply.

That will return me a list of members who's primary usergroup is 10 or is 20.

I need a query that will return members who *are a member of* group 10 *and* group 20.

So it needs to query the membergroupids field as well as the usergroupid field. In fact.. if it makes it any easier, I'd be happy to drop the usergroupid field and just focus on the membergroupids field.

Thanks in advance.

Simon

Eikinskjaldi
07-10-2007, 07:55 AM
well why didn't you say so.

select * from user where find_in_set('10',membergroupids) or find_in_set('20', membergroupids);

SDB
07-10-2007, 08:10 AM
:confused:

I did :)

I'm looking to return a list of members who are a member of usergroup 10 and also of usergroup 20.

Thanks for your help, that looks just like what I'm after, will try it now.

All the best

Simon

PS. Your query still reads "OR" rather than "AND".

PPS. Thank you, that worked a treat :)