What is the full correct syntax for the SQL Case statement?
|
3
|
|
|
|
|
|
Well, full, depends on the database engine you're talking to. For SQL Server:
or:
expressions, etc:
Link: http://msdn.microsoft.com/en-us/library/ms181765.aspx 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. |
|||
|
|
|
|
CASE question!!
|
||
|
|
|
|
waht is wrong with following script? CASE
|
||
|
|
|
|
waht is wrong with following script? CASE WHEN ((@SwipDesc1 = 'INN' AND @SwipDesc2 = 'INN' AND @SwipDesc3 = 'INN' ) OR (@SwipDesc1 = 'INN' AND @SwipDesc2 = 'INN' AND @SwipDesc3 = 'OUT' ) OR (@SwipDesc1 = 'INN' AND @SwipDesc2 = 'OUT' AND @SwipDesc3 = 'OUT' ) ) THEN BEGIN INSERT INTO Tbl_Oracle_Attend (BUSINESS_GROUP_ID, EMPLOYEE_NO, CARD_READER_NO, DATE_IN, TIME_IN, DATE_OUT, TIME_OUT, FUNCTION) SELECT 305, @Empl_No, @DevID, @SwapDate, @SwapTime1, @SwapDate, @SwapTime3, @ST_General END END |
||
|
|
|
|
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
|
||
|
|
|
|
One point to note in Oracle's case, if no when matches and there is no else part an exception is raised. |
||
|
|
|
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
|
||
|
|
|
|
Oracle syntax from the 11g Documentation:
simple_case_expression
searched_case_expression
else_clause
|
||||||
|
|
|
Here are the examples from the PostgreSQL docs (Postgres follows the standard here):
or
|
||
|
|
|
|
I dug up the Oracle page for the same and it looks like this is the same syntax, just described slightly different. |
||
|
|
