if on sql???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yaniv111
    New Member
    • Jun 2007
    • 9

    #1

    if on sql???

    hallo
    on sql
    how can i say in sql
    if
    like: if this = this then
    else
    do this
    end if


    thankx
  • ADezii
    Recognized Expert Expert
    • Apr 2006
    • 8834

    #2
    Originally posted by yaniv111
    hallo
    on sql
    how can i say in sql
    if
    like: if this = this then
    else
    do this
    end if


    thankx
    You may want to look inti the IIF() Function:.

    [CODE=vb]Syntax
    IIf(expr, truepart, falsepart)

    The IIf function syntax has these named arguments:

    Part Description
    expr Required. Expression you want to evaluate.
    truepart Required. Value or expression returned if expr is True.
    falsepart Required. Value or expression returned if expr is False.



    'Remarks
    IIf always evaluates both truepart and falsepart, even though it returns only one of them. Because of this, you should watch for undesirable side effects. For example, if evaluating falsepart results in a division by zero error, an error occurs even if expr is True.

    IIf(TestMe > 1000, "Large", "Small")[/CODE]

    Comment

    Working...