Is it possible to use an IF clause within a WHERE clause in MS SQL?
Example:
WHERE
IF IsNumeric(@OrderNumber) = 1
OrderNumber = @OrderNumber
ELSE
OrderNumber LIKE '%' + @OrderNumber + '%'
|
2
|
Is it possible to use an IF clause within a WHERE clause in MS SQL? Example:
|
|||
|
|
|
|
Use a CASE statement
Or you can use an IF statement like @N. J. Reed points out. |
||||||
|
|
|
You should be able to do this without any IF or CASE
Depending on the flavour of SQL you may need to tweak the casts on the order number to an INT or VARCHAR depending on whether implicit casts are supported. This is a very common technique in a WHERE clause. If you want to apply some "IF" logic in the WHERE clause all you need to do is add the extra condition with an boolean AND to the section where it needs to be applied. |
||||||
|
|
|
Use a CASE statement instead of IF. |
||
|
|
|
|
You want the CASE statement WHERE OrderNumber LIKE CASE WHEN IsNumeric(@OrderNumber)=1 THEN @OrderNumber ELSE '%' + @OrderNumber END |
||
|
|
|
|
@bdukes i don't think that syntax works |
||
|
|
|
|
There isn't a good way to do this in SQL. Some approaches I have seen: 1) Use CASE combined with boolean operators:
2) Use IF's outside the SELECT
3) Using a long string, compose your SQL statement conditionally, and then use EXEC The 3rd approach is hideous, but it's almost the only think that works if you have a number of variable conditions like that. |
||
|
|