![]() |
membergroupids IN (18) doesnt work - why?
Can anybody help me with this querry? I have users that are in 2 membergroupids. That is 12 and 18.
When I write condition membergroupids = 12 it works fine and it pull out ousers that are in 12 membergroupids (aka additional usergroup). I guess this works only because 12 is recorderd as first id in table... 12,18... But when i try conditional membergroupids = 18; or I try membergroupids IN (18) neither doesnt work. Any idea why? How to accomplish this querry? Is it because there are two "IN" in the querry??? This is what I try and doesnt work for me: PHP Code:
|
Are you sure that there are users whose membergroupid is 18?
|
You have it backwards, it would be
Code:
18 IN (membergroupids) Use, Code:
find_in_set(18, membergroupids) |
Hmm I tried this:
PHP Code:
Anyway i managed it with "membergroupids LIKE %18%" query and it works fine sofar. Thanks for your help and any further feedback is appreciated .-) |
It's a MySQL function not a PHP function. :p
Use it instead of IN |
[sql]SELECT userid FROM " . TABLE_PREFIX . "user WHERE userid IN ($user) and membergroupids find_in_set(18, membergroupids)[/sql]
your way of doing the LIKE is not good as it will grab also members in group 118, 2187 etc... if you have that much usergroups.. lol |
I am aware of that :)
Ok so how to make it in correct way? I am getting syntax errror. PHP Code:
SELECT userid FROM user WHERE userid IN (17291,24998,19,8026,28994,56325) and membergroupids find_in_set(18, membergroupids); MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'find_in_set(18, membergroupids)' at line 1 Error Number : 1064 |
Should be:
PHP Code:
|
And if you get touchy about vBulletin Coding Standards...
PHP Code:
|
Thanks, it is good to learn handy stuff from beginning :)
Thanks to all of you, your advice with find_ind_set is working great .-) |
All times are GMT. The time now is 12:08 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|