I want to be able to perform a IF...THEN in an SQL SELECT Statement.
For Example;
SELECT IF(Obsolete = 'N' or InStock = 'Y';1;0) as Salable, * FROM Product
|
|
I want to be able to perform a IF...THEN in an SQL SELECT Statement. For Example; SELECT IF(Obsolete = 'N' or InStock = 'Y';1;0) as Salable, * FROM Product
|
|||
|
|
|
|
The CASE statement is the closest to IF in SQL.
You only need to do the CAST if you want the result as a boolean value. |
||
|
|
|
|
The case statement is your friend in this situation, and takes one of two forms: The simple case:
The extended case:
You can even put case statements in an order by clause for really fancy ordering. |
||
|
|
|
|
Case is great and for ORACLE there is a decode function which has its merits. I guess it is like iif in excel decode('A','A','We have an A','B','We have a B','We have a letter not A or B') these can contain other decodes. Of course you can use variables as well ;) Edit :- I just noted from the TAG that you were referring to MS SQL Server so decode is not an option. |
||
|
|
|
|
Use a CASE statement:
|
||
|
|
|
|
Microsoft SQL Server (T-SQL) In a select use:
In a where clause, use:
|
||
|
|
|
|
you can find some nice examples here, and I think the statement that you can use will be something like this:
|
||
|
|
|
|
You use case;
|
||
|
|
|
|
|
||
|
|
|
|
Use CASE. Something like this.
|
||
|
|
|
|
|
|||
|
|
|
|
Use the IFF The IFF() function tests a specified expression and returns one of two strings, based on whether the expression tested was true or false. Example: Select IFF(curr_bal>0,'Yes','No'), last_name from customer |
||||||||
|