Why this doesn't work? Please help.
SELECT X
FROM Y
WHERE Z >= 5
AND A IN (CASE @someParameter when 1 THEN (5) ELSE (4,5) END)
Where as below works
SELECT X
FROM Y
WHERE Z >= 5
AND A = (CASE @someParameter when 1 THEN 5 ELSE 4 END)
|
Why this doesn't work? Please help.
Where as below works
|
|||
|
You could accomplish that without
|
|||
|
|
|
You can have select statement instead of mentioning numbers directly. I ahven't tried executing it. But the idea is to get the required number set by using select query inside your brackets.
|
|||
|
|
|
You can't return a set, range, or table (or anything else you want to call multiple values) from a CASE statement. That |
|||
|
|
Note: I haven't tried this syntax. My guess is that this should work. |
|||
|
|
(4,5)? – Randolph West Feb 21 '11 at 6:05INoperator. – iSid Feb 21 '11 at 7:02