What is the complete and correct syntax for the SQL Case statement?
|
The complete syntax depends on the database engine you're working with: For SQL Server:
or:
expressions, etc:
Link: CASE (Transact-SQL) Also note that the ordering of the WHEN statements is important. You can easily write multiple WHEN clauses that overlap, and the first one that matches is used. Note: If no ELSE clause is specified, and no matching WHEN-condition is found, the value of the CASE expression will be NULL. |
||||
|
|
|
Considering you tagged multiple products, I'd say the full correct syntax would be the one found in the ISO/ANSI SQL-92 standard:
Syntax Rules
|
|||
|
|
Here are the examples from the PostgreSQL docs (Postgres follows the standard here):
or
|
|||
|
|
|
Sybase has the same case syntax as SQL Server: DescriptionSupports conditional SQL expressions; can be used anywhere a value expression can be used. Syntax
Case and values syntax
Parameterscasebegins the case expression. whenprecedes the search condition or the expression to be compared. search_conditionis used to set conditions for the results that are selected. Search conditions for case expressions are similar to the search conditions in a where clause. Search conditions are detailed in the Transact-SQL User’s Guide. thenprecedes the expression that specifies a result value of case. expressionis a column name, a constant, a function, a subquery, or any combination of column names, constants, and functions connected by arithmetic or bitwise operators. For more information about expressions, see “Expressions” in. Example
|
|||
|
|
I dug up the Oracle page for the same and it looks like this is the same syntax, just described slightly different. |
||||
|
|
|
Oracle syntax from the 11g Documentation:
simple_case_expression
searched_case_expression
else_clause
|
|||||||
|
|
One point to note in Oracle's case, if no when matches and there is no else part an exception is raised. |
|||
|
|
|||
|
|