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

fix(ebnf): support of the left outer join

parent 5f8fde62
No related branches found
No related tags found
1 merge request!1414sbroad import
...@@ -9,7 +9,7 @@ dql ::= (select | values) ...@@ -9,7 +9,7 @@ dql ::= (select | values)
select ::= 'SELECT' 'DISTINCT'? ((projection (',' projection)*)) select ::= 'SELECT' 'DISTINCT'? ((projection (',' projection)*))
'FROM' (table | ('(' (select | values) ')')) (('AS')? name)? 'FROM' (table | ('(' (select | values) ')')) (('AS')? name)?
( (
('INNER')? 'JOIN' ( ('INNER' | ('LEFT' ('OUTER')?))? 'JOIN' (
((table | ('(' (select | values) ')')) (('AS')? name)?) ((table | ('(' (select | values) ')')) (('AS')? name)?)
) )
'ON' expression 'ON' 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