Tagged Questions
The in-function tag has no wiki summary.
8
votes
5answers
2k views
MySQL ORDER BY IN()
I have a PHP array with numbers of ID's in it. These numbers are already ordered.
Now i would like to get my result via the IN() method, to get all of the ID's.
However, these ID's should be ordered ...
5
votes
10answers
7k views
SQL Server using wildcard within IN
Since I believe this should be a basic question I know this question has probably been asked, but I am unable to find it. I'm probably about to earn my Peer Pressure badge, but I'll ask anyway:
Is ...
2
votes
2answers
829 views
linq where clause not in select statement
Can someone help me to convert from SQL Query to LINQ VB.NET:
select rls.* from Roles rls(nolock)
where rls.id not in (
select r.ID from usersRole ur (nolock)
inner join Roles r(nolock) on ur.RoleID ...
0
votes
3answers
621 views
SQL Server 2008 NOT IN() seems to fail
I am building a suggestive tagging system (sounds seedy), I pass in a string to the db and if there is a match it sends back that tag. I want to stop duplicate tags, so if one tag is WEB, I only want ...
0
votes
4answers
71 views
MySQL IN problem
I'm trying to use the value of another field inside an IN.
SELECT types.id, title, auth_users.types
FROM types
LEFT JOIN auth_users ON auth_users.id IN (8,9)
WHERE types.id IN (1,2,3)
GROUP BY ...