Skip to content
Snippets Groups Projects
Commit cc3440ce authored by Artur Sabirov's avatar Artur Sabirov
Browse files
parent 29ffce7d
No related branches found
No related tags found
1 merge request!1414sbroad import
......@@ -63,11 +63,8 @@ call ::= 'CALL' procedure '(' literal? (',' literal)* ')'
delete ::= 'DELETE' 'FROM' table ('WHERE' expression)?
insert ::= 'INSERT' 'INTO' table ('(' column (',' column)* ')')? (values | select)
('ON' 'CONFLICT' 'DO' ('NOTHING' | 'REPLACE' | 'FAIL'))?
update ::= 'UPDATE' table
'SET' (
column '=' expression
(',' column '=' expression)*
)
update ::= 'UPDATE' table 'SET'
column '=' expression (',' column '=' expression)*
('FROM' scan)? ('WHERE' expression)?
acl ::= (alter_user | create_role | create_user | drop_role | drop_user | grant | revoke)
......
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