Changeset 4451 for trunk/query-language.txt
- Timestamp:
- 05/27/08 04:44:08 (8 months ago)
- Files:
-
- 1 modified
-
trunk/query-language.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/query-language.txt
r4427 r4451 41 41 RangeVariableDeclaration = identifier {"." identifier} [["AS"] IdentificationVariable] 42 42 VariableDeclaration = identifier [["AS"] IdentificationVariable] 43 IdentificationVariable = identifier 43 44 44 45 Join = ["LEFT" | "INNER"] "JOIN" RangeVariableDeclaration [("ON" | "WITH") ConditionalExpression] … … 60 61 Primary = PathExpression | Atom | "(" Expression ")" | Function | AggregateExpression 61 62 62 SelectExpression = (PathExpressionEndingWithAsterisk | Expression | "(" Subselect ")" ) [["AS"] IdentificationVariable]63 SelectExpression = (PathExpressionEndingWithAsterisk | Expression | "(" Subselect ")" ) [["AS"] FieldIdentificationVariable] 63 64 PathExpression = identifier {"." identifier} 64 65 PathExpressionEndingWithAsterisk = {identifier "."} "*" 66 FieldIdentificationVariable = identifier 65 67 66 68 AggregateExpression = ("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] Expression ")"