An expression is a statement that can be evaluated to return values.
expression: case-expression | constant | [correlation-name.]column-name | - expression | expression operator expression | ( expression ) | function-name ( expression, ... ) | if-expression | special value | ( subquery ) | variable-name
case-expression: CASE expression WHEN expression THEN expression,... [ ELSE expression ] END
alternative form of case-expression: CASE WHEN search-condition THEN expression, ... [ ELSE expression ] END
constant: integer | number | string | host-variable
special-value: CURRENT { DATE | TIME | TIMESTAMP } | NULL | SQLCODE | SQLSTATE | USER
if-expression: IF condition THEN expression [ ELSE expression ] ENDIF
operator: { + | - | * | / | || | % }
Expressions are used in many different places.
Expressions are formed from several different kinds of elements. These are discussed in the sections on functions and variables. See SQL functions, and Variables.
You must be connected to the database in order evaluate expressions.
None.
Constants in expressions
Column names in expressions
Subqueries in expressions
IF expressions
CASE expressions
Regular expressions
Compatibility of expressions
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |