MACROMEDIA COLDFUSION MX 61-DEVELOPING COLDFUSION MX Develop Manual page 475

Developing coldfusion mx applications
Table of Contents

Advertisement

null_cond ::= row_constructor <IS> ( <NOT> )? <NULL>
comparison_cond ::= row_constructor comparison_operator row_constructor
between_cond ::= row_constructor ( <NOT> )? <BETWEEN> row_constructor
<AND> row_constructor
in_cond ::= row_constructor ( <NOT> )? <IN> <OPENPAREN> ( expression_list )
<CLOSEPAREN>
row_constructor ::= expression
comparison_operator ::= <LESSEQUAL>
| <GREATEREQUAL>
| <NOTEQUAL>
| <NOTEQUAL2>
| <EQUAL>
| <LESS>
| <GREATER>
like_cond ::= string_exp ( <NOT> )? <LIKE> string_exp
expression_list ::= expression ( <COMMA> expression )?
expression ::= <STRING_LITERAL>
| <OPENPAREN> <STRING_LITERAL> <CLOSEPAREN>
| numeric_exp
numeric_exp ::= numeric_term ( ( <PLUS> | <MINUS> ) numeric_exp )?
numeric_term ::= numeric_factor ( ( <ASTERISK> | <SLASH> ) numeric_term )?
numeric_factor ::= ( <PLUS> | <MINUS> )? numeric_primary
numeric_primary ::= <INTEGER_LITERAL>
| <FLOATING_POINT_LITERAL>
| aggregate_func
| column_ref
| <OPENPAREN> numeric_exp <CLOSEPAREN>
aggregate_func ::= <COUNT> <OPENPAREN> count_param <CLOSEPAREN>
| ( <AVG> | <SUM> | <MIN> | <MAX> ) <OPENPAREN> ( <ALL> | <DISTINCT> )?
numeric_exp <CLOSEPAREN>
count_param ::= <ASTERISK>
| ( <ALL> | <DISTINCT> )? numeric_exp
string_exp ::= <STRING_LITERAL>
| column_ref
| <OPENPAREN> string_exp <CLOSEPAREN>
column_ref ::= <IDENTIFIER> ( <DOT> <IDENTIFIER> )?
BNF for Query of Queries
475

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION MX 61-DEVELOPING COLDFUSION MX and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Coldfusion mx

Table of Contents