Spec-Zone .ru
спецификации, руководства, описания, API

9.5. Expression Syntax

The following rules define expression syntax in MySQL. The grammar shown here is based on that given in the sql/sql_yacc.yy file of MySQL source distributions. See the notes after the grammar for additional information about some of the terms. Operator precedence is given in Section 12.3.1, "Operator Precedence".

expr:    expr OR expr  | expr || expr  | expr XOR expr  | expr AND expr  | expr && expr  | NOT expr  | ! expr  | boolean_primary IS [NOT] {TRUE | FALSE | UNKNOWN}  | boolean_primaryboolean_primary:    boolean_primary IS [NOT] NULL  | boolean_primary <=> predicate  | boolean_primary comparison_operator predicate  | boolean_primary comparison_operator {ALL | ANY} (subquery)  | predicatecomparison_operator: = | >= | > | <= | < | <> | !=predicate:    bit_expr [NOT] IN (subquery)  | bit_expr [NOT] IN (expr [, expr] ...)  | bit_expr [NOT] BETWEEN bit_expr AND predicate  | bit_expr SOUNDS LIKE bit_expr  | bit_expr [NOT] LIKE simple_expr [ESCAPE simple_expr]  | bit_expr [NOT] REGEXP bit_expr  | bit_exprbit_expr:    bit_expr | bit_expr  | bit_expr & bit_expr  | bit_expr << bit_expr  | bit_expr >> bit_expr  | bit_expr + bit_expr  | bit_expr - bit_expr  | bit_expr * bit_expr  | bit_expr / bit_expr  | bit_expr DIV bit_expr  | bit_expr MOD bit_expr  | bit_expr % bit_expr  | bit_expr ^ bit_expr  | bit_expr + interval_expr  | bit_expr - interval_expr  | simple_exprsimple_expr:    literal  | identifier  | function_call  | simple_expr COLLATE collation_name  | param_marker  | variable  | simple_expr || simple_expr  | + simple_expr  | - simple_expr  | ~ simple_expr  | ! simple_expr  | BINARY simple_expr  | (expr [, expr] ...)  | ROW (expr, expr [, expr] ...)  | (subquery)  | EXISTS (subquery)  | {identifier expr}  | match_expr  | case_expr  | interval_expr

Notes:

For literal value syntax, see Section 9.1, "Literal Values".

For identifier syntax, see Section 9.2, "Schema Object Names".

Variables can be user variables, system variables, or stored program local variables or parameters:

param_marker is '?' as used in prepared statements for placeholders. See Section 13.5.1, "PREPARE Syntax".

(subquery) indicates a subquery that returns a single value; that is, a scalar subquery. See Section 13.2.10.1, "The Subquery as Scalar Operand".

{identifier expr} is ODBC escape syntax and is accepted for ODBC compatibility. The value is expr. The curly braces in the syntax should be written literally; they are not metasyntax as used elsewhere in syntax descriptions.

match_expr indicates a MATCH expression. See Section 12.9, "Full-Text Search Functions".

case_expr indicates a CASE expression. See Section 12.4, "Control Flow Functions".

interval_expr represents a time interval. The syntax is INTERVAL expr unit, where unit is a specifier such as HOUR, DAY, or WEEK. For the full list of unit specifiers, see the description of the DATE_ADD() function in Section 12.7, "Date and Time Functions".

The meaning of some operators depends on the SQL mode:

See Section 5.1.7, "Server SQL Modes".