vote up 3 vote down star

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

flag

78% accept rate

12 Answers

vote up 7 vote down check

The CASE statement is the closest to IF in SQL.

SELECT CAST(CASE WHEN Obsolete = 'N' or InStock = 'Y' THEN 1 ELSE 0 END AS bit) as Salable, * FROM Product

You only need to do the CAST if you want the result as a boolean value.

link|flag
vote up 1 vote down

The case statement is your friend in this situation, and takes one of two forms:

The simple case:

SELECT CASE <variable> WHEN <value>      THEN <returnvalue>
                       WHEN <othervalue> THEN <returnthis>
                                         ELSE <returndefaultcase>
       END
FROM <table>

The extended case:

SELECT CASE WHEN <test>      THEN <returnvalue>
            WHEN <othertest> THEN <returnthis>
                             ELSE <returndefaultcase>
       END
FROM <table>

You can even put case statements in an order by clause for really fancy ordering.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Use a CASE statement:

SELECT CASE
            WHEN (Obsolete = 'N' OR InStock = 'Y')
            THEN 'Y'
            ELSE 'N'
       END as Salable

etc...
link|flag
vote up 1 vote down

Microsoft SQL Server (T-SQL)

In a select use:

select case when Obsolete = 'N' or InStock = 'Y' then 'YES' else 'NO' end

In a where clause, use:

where 1 = case when Obsolete = 'N' or InStock = 'Y' then 1 else 0 end
link|flag
vote up 0 vote down

you can find some nice examples here, and I think the statement that you can use will be something like this:
(from 4guysfromrolla:)

SELECT
  FirstName, LastName,
  Salary, DOB,
  CASE Gender
    WHEN 'M' THEN 'Male'
    WHEN 'F' THEN 'Female'
  END
FROM Employees
link|flag
vote up 1 vote down

You use case;

SELECT *,
  Salable =
    CASE 
      WHEN (Obsolete = 'N' AND InStock = 'Y) THEN true
      ELSE false
    END
FROM Product
link|flag
vote up 3 vote down
 SELECT
   CASE 
      WHEN OBSOLETE = 'N' or InStock = 'Y' THEN 'TRUE' 
      ELSE 'FALSE' 
   END AS Salable,
   * 
FROM PRODUCT
link|flag
vote up 5 vote down

Use CASE. Something like this.

SELECT Salable =
        CASE Obsolete
        WHEN 'N' THEN 1
        ELSE 0
    END
link|flag
vote up 2 vote down
SELECT (CASE WHEN (Obsolete = 'N' OR InStock = 'Y') THEN 'YES' ELSE 'NO' END) as Salable, * FROM Product
link|flag
vote up 1 vote down

In T-SQL, use CASE...WHEN in place of IF...THEN

link|flag
vote up 0 vote down

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

link|flag
His question is tagged mssql, and IFF doesn't exist there. – John Sheehan Sep 15 '08 at 14:38
Point taken John. Case is the way to go with MSSQL – Leo Moore Sep 15 '08 at 14:43
I think this is the answer for Excel... – matt b Sep 15 '08 at 14:43
Works with Access – Patrick Honorez Nov 25 at 10:34

Your Answer

Get an OpenID
or

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