Skip to content

Commit

Permalink
[#7171] MERGE without INTO (possible in SQL Server
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Mar 9, 2018
1 parent e545a4b commit e4fdaaa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -238,7 +238,7 @@ setClause = fieldName '=' field
deleteStatement = [ with ] 'DELETE' [ 'FROM' ] tableName [ 'WHERE' condition ] [ 'RETURNING' ( '*' | fields ) ]
;

mergeStatement = [ with ] 'MERGE INTO' tableName [ [ 'AS' ] identifier ]
mergeStatement = [ with ] 'MERGE' [ 'INTO' ] tableName [ [ 'AS' ] identifier ]
'USING' '(' select ')' [ [ 'AS' ] identifier ]
'ON' condition break
{
Expand Down

0 comments on commit e4fdaaa

Please sign in to comment.