[#7171] MERGE without INTO (possible in SQL Server

This commit is contained in:
lukaseder 2018-03-09 12:57:46 +01:00
parent e545a4bde0
commit e4fdaaa642

View File

@ -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
{