Using the "IF" function in a column

  • Is it possible to use the "IF" function in a column at design time as the value for that field? I do it regularly in Excel with no problem but I am new to SQL Server and have been unable to figure this one out. I have been using 3 of my own books plus the Online Books but to no avail. If I cannot do it in design, can I create a script (or a stored proceedure) that will do it at run time? Thanks, JRichards54 🙂

  • jrichards54 (10/28/2012)


    Is it possible to use the "IF" function in a column at design time as the value for that field? I do it regularly in Excel with no problem but I am new to SQL Server and have been unable to figure this one out. I have been using 3 of my own books plus the Online Books but to no avail. If I cannot do it in design, can I create a script (or a stored proceedure) that will do it at run time? Thanks, JRichards54 🙂

    SQL Server only permits constants as default values. You could use a computed column to generate (and contain) a value for you, or a check constraint to ensure that an INSERTED/UPDATEd value matches your criteria. In practice? I'd put the logic into the INSERT script.


    [font="Arial"]Low-hanging fruit picker and defender of the moggies[/font]

    For better assistance in answering your questions, please read this[/url].


    Understanding and using APPLY, (I)[/url] and (II)[/url] Paul White[/url]

    Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]

  • Thank you for your reply. I appreciate your insights and recommendations. Have a good day. JRichards54 🙂

  • ChrisM@home (10/28/2012)


    jrichards54 (10/28/2012)


    Is it possible to use the "IF" function in a column at design time as the value for that field? I do it regularly in Excel with no problem but I am new to SQL Server and have been unable to figure this one out. I have been using 3 of my own books plus the Online Books but to no avail. If I cannot do it in design, can I create a script (or a stored proceedure) that will do it at run time? Thanks, JRichards54 🙂

    SQL Server only permits constants as default values. ...

    True but... you can construct an IF-like syntax using CASE as a default as long as you don't reference any column names in the CASE:

    CREATE TABLE #Temp

    (ID INT IDENTITY

    ,Value1 CHAR(1) DEFAULT ('A')

    ,Value2 CHAR(1) DEFAULT (CASE WHEN GETDATE() > '2012-10-29' THEN 'B' END))

    INSERT INTO #Temp (Value1)

    SELECT NULL UNION ALL SELECT 'B'

    SELECT * FROM #Temp

    DROP TABLE #Temp


    My mantra: No loops! No CURSORs! No RBAR! Hoo-uh![/I]

    My thought question: Have you ever been told that your query runs too fast?

    My advice:
    INDEXing a poor-performing query is like putting sugar on cat food. Yeah, it probably tastes better but are you sure you want to eat it?
    The path of least resistance can be a slippery slope. Take care that fixing your fixes of fixes doesn't snowball and end up costing you more than fixing the root cause would have in the first place.

    Need to UNPIVOT? Why not CROSS APPLY VALUES instead?[/url]
    Since random numbers are too important to be left to chance, let's generate some![/url]
    Learn to understand recursive CTEs by example.[/url]
    [url url=http://www.sqlservercentral.com/articles/St

  • In addition to expressions, you can reference user defined functions or non-deterministic functions for a column default.

    However, a default can't reference other columns in the table, you would need a computed column or view for that.

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • dwain.c (10/28/2012)


    ChrisM@home (10/28/2012)


    jrichards54 (10/28/2012)


    Is it possible to use the "IF" function in a column at design time as the value for that field? I do it regularly in Excel with no problem but I am new to SQL Server and have been unable to figure this one out. I have been using 3 of my own books plus the Online Books but to no avail. If I cannot do it in design, can I create a script (or a stored proceedure) that will do it at run time? Thanks, JRichards54 🙂

    SQL Server only permits constants as default values. ...

    True but... you can construct an IF-like syntax using CASE as a default as long as you don't reference any column names in the CASE:

    CREATE TABLE #Temp

    (ID INT IDENTITY

    ,Value1 CHAR(1) DEFAULT ('A')

    ,Value2 CHAR(1) DEFAULT (CASE WHEN GETDATE() > '2012-10-29' THEN 'B' END))

    INSERT INTO #Temp (Value1)

    SELECT NULL UNION ALL SELECT 'B'

    SELECT * FROM #Temp

    DROP TABLE #Temp

    You wrote above: "as long as you don't reference any column names in the CASE:"

    Thank you but this will not work for me as the VALUE in that column does change and that VALUE is necessary to accurately compute the result of the IF statement. The VALUE of that column (QtyInPkg) can vary from 14, 30, 60 , 90, 180, and 365 and these are all Integers and represent days. The "If" statement works just fine if I use the any of the constants but does not work if I use the column name (QtyInPkg). Thanks again and have a good day. JRichards54 🙂

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply