Posts
Sort by recent activity
SQL Prompt formatting fails if a MERGE statement contains a "between"-clause in the NOT MATCHED part
Hi!
I found a Problem when trying to Format a MERGE Statement.
DECLARE @Param1 INT;
DECLARE @Param2 INT;
DECLARE @Param3 BIT;
DECLARE @T TABLE
(
[Col1] INT
, [Col2] INT
, [Col3] INT
);
----Uncommen...