Yurimien
01-28-2008, 10:03 AM
I want to select a list of users that have a certain membergroupid
SELECT username
FROM vb_user
WHERE membergroupids = '9'
LIMIT 0 , 30
The code works when the user only has one additional group assigned, but most of my users have 5 groups assigned. The content in the database looks like: 5,7,9,10
So how can I make sure I also select those with multiple usergroups?
--------------- Added 1201523929 at 1201523929 ---------------
@the one that posted a reply earlier:
This selects it only if the membergroupids start with 5. But it helped me, I've added everyone to the registered members group, and expanded it to
WHERE membergroupids IN (2 , 5 , 7 )
Thank you.
SELECT username
FROM vb_user
WHERE membergroupids = '9'
LIMIT 0 , 30
The code works when the user only has one additional group assigned, but most of my users have 5 groups assigned. The content in the database looks like: 5,7,9,10
So how can I make sure I also select those with multiple usergroups?
--------------- Added 1201523929 at 1201523929 ---------------
@the one that posted a reply earlier:
This selects it only if the membergroupids start with 5. But it helped me, I've added everyone to the registered members group, and expanded it to
WHERE membergroupids IN (2 , 5 , 7 )
Thank you.