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 + '%'
|
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. |
|||||||||||
|
|
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. |
|||
|
|
|
You want the CASE statement
|
||||
|
|
|
I think that where...like/=...case...then... can work with Booleans. I am using T-SQL. Scenario: Let's say you want to get Person-30's hobbies if bool is false, and Person-42's hobbies if bool is true. (According to some, hobby-lookups comprise over 90% of business computation cycles, so pay close attn.).
|
|||
|
|
WHERE (IsNumeric(@OrderNumber) <> 1 OR OrderNumber = @OrderNumber)
AND (IsNumber(@OrderNumber) = 1 OR OrderNumber LIKE '%'
+ @OrderNumber + '%')
|
|||
|
|
See if this helps. |
||||
|
|
|
The following example executes a query as part of the Boolean expression and then executes slightly different statement blocks based on the result of the Boolean expression. Each statement block starts with BEGIN and completes with END.
Using nested IF...ELSE statements The following example shows how an IF … ELSE statement can be nested inside another. Set the @Number variable to 5, 50, and 500 to test each statement.
|
||||
|
|
|||||
|