Skip to content
Snippets Groups Projects
Verified Commit c4848ec4 authored by Denis Smirnov's avatar Denis Smirnov
Browse files

fixup: EBNF for documentation

parent 79d1d796
No related branches found
No related tags found
1 merge request!1414sbroad import
......@@ -8,7 +8,7 @@ dql ::= (with? select | values)
with ::= 'WITH'
cte ('(' column (',' column)* ')')? 'AS' '(' (select | values) ')'
(',' cte ('(' column (',' column)* ')')? 'AS' '(' (select | values) ')')*
)? select
select
select ::= 'SELECT' 'DISTINCT'? projection (',' projection)* ('FROM' scan
(( 'INNER' | 'LEFT' 'OUTER'? )? 'JOIN' scan 'ON' expression)*
('WHERE' expression)?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment