Help for this page

Select Code to Download


  1. or download this
    IF(expr1,expr2,expr3)
    
  2. or download this
    CASE 
     WHEN condition THEN result 
     [ WHEN condition THEN result ]... 
     [ ELSE result ] 
    END
    
  3. or download this
    CASE expression 
     WHEN value THEN result 
     [ WHEN value THEN result ]... 
     [ ELSE result ] 
    END