sqlformat icon indicating copy to clipboard operation
sqlformat copied to clipboard

INSERT INTO formatting issue with nested SELECT's

Open meekys opened this issue 7 years ago • 0 comments

Source insert into dbo.ATable (Col1, Col2) VALUES ( (SELECT Id FROM Table2), (SELECT Id FROM Table3) )

Output INSERT INTO dbo.ATable (Col1, Col2) VALUES ((Laan.Sql.Parser.Entities.SelectStatement), (Laan.Sql.Parser.Entities.SelectStatement))

Expected Output INSERT INTO dbo.ATable (Col1, Col2) VALUES ( (SELECT Id FROM Table2), (SELECT Id FROM Table3))

meekys avatar Sep 21 '17 00:09 meekys