Is there a way to make a CASE statement with an IN clause?
SELECT
CASE c.Number
IN ('1121231','31242323') THEN 1
IN ('234523','2342423') THEN 2
END AS Test
FROM tblClient c
|
Is there a way to make a CASE statement with an IN clause?
|
|||
|
|
|
Yes. You need to use the "Searched" form rather than the "Simple" form of the
|
|||
|
|
|
You can return the same value from several matches:
This will probably result in the same execution plan as Martins suggestion, so it's more a matter of how you want to write it. |
|||||||||
|
|
If you have more numbers or if you intend to add new test numbers for
Also, instead of table variable you can use a regular table. |
|||
|
|