vote up 3 vote down star
2

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 + '%'
flag

6 Answers

vote up 12 vote down check

Use a CASE statement
UPDATE: The previous syntax (as pointed out by a few people) doesn't work. You can use CASE as follows:

WHERE OrderNumber LIKE
  CASE WHEN IsNumeric(@OrderNumber) = 1 THEN 
    @OrderNumber 
  ELSE
    '%' + @OrderNumber
  END

Or you can use an IF statement like @N. J. Reed points out.

link|flag
Sorry. It's easy to forget that CASE doesn't work like that. CASE can only be used to pick values selectively, not to apply boolean logic. In SQL Server, booleans are not values that can be operated on. That example doesn't pass syntax check. – Euro Micelli Sep 17 '08 at 21:37
Thanks, Euro, I've adjusted my answer. – bdukes Sep 17 '08 at 21:49
[Note after the UPDATE by author]: That should work, but you should TRIM() both sides to make sure that a match is found. I have a gut feeling that there rare still edge cases that fail to match. – Euro Micelli Sep 17 '08 at 21:51
vote up 8 vote down

You should be able to do this without any IF or CASE

 WHERE 
   (IsNumeric(@OrderNumber) AND
      (CAST OrderNumber AS VARCHAR) = (CAST @OrderNumber AS VARCHAR)
 OR
   (NOT IsNumeric(@OrderNumber) AND
       OrderNumber LIKE ('%' + @OrderNumber))

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.

link|flag
Very interesting. I never thought of it this way. – Bryan Roth Sep 18 '08 at 2:31
I'd imagine you take a bit of a performance hit over the CASE solution, though, since all of those conditions get evaluated, no? – Kevin Fairchild Sep 26 '08 at 13:06
Perfect - solved a long-standing problem for me; thanks for the pointer! – cori May 12 at 15:35
vote up 2 vote down

Use a CASE statement instead of IF.

link|flag
vote up 1 vote down

You want the CASE statement

WHERE OrderNumber LIKE CASE WHEN IsNumeric(@OrderNumber)=1 THEN @OrderNumber ELSE '%' + @OrderNumber END

link|flag
vote up 1 vote down

@bdukes i don't think that syntax works

link|flag
vote up 1 vote down

There isn't a good way to do this in SQL. Some approaches I have seen:

1) Use CASE combined with boolean operators:

WHERE
    OrderNumber = CASE 
        WHEN (IsNumeric(@OrderNumber) = 1)
        THEN CONVERT(INT, @OrderNumber)
        ELSE -9999 -- Some numeric value that just cannot exist in the column
    END
    OR 
    FirstName LIKE CASE
        WHEN (IsNumeric(@OrderNumber) = 0)
        THEN '%' + @OrderNumber
        ELSE ''
    END

2) Use IF's outside the SELECT

IF (IsNumeric(@OrderNumber)) = 1
BEGIN
    SELECT * FROM Table
    WHERE @OrderNumber = OrderNumber
END ELSE BEGIN
    SELECT * FROM Table
    WHERE OrderNumber LIKE '%' + @OrderNumber
END

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.