X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=demo%2Fdemo.sql;h=a3155d591620b1632db33e93c1c669cc509fb374;hb=f759666e045e7bb0a8b2ff3379b9d46c83c37c67;hp=bb081d92a784b57530a9ed69f91b4c32e592f297;hpb=05b5fb4c6b4e167ffefbd17e9530d87db027d942;p=sqlconvert.git diff --git a/demo/demo.sql b/demo/demo.sql index bb081d9..a3155d5 100644 --- a/demo/demo.sql +++ b/demo/demo.sql @@ -1,7 +1,14 @@ SELECT * FROM `mytable`; -- line-comment" + INSERT into /* inline comment */ mytable VALUES (1, 'тест'); + /*! directive*/; + INSERT INTO `MyTable` (`Id`, `Name`) VALUES (1, 'one'); +insert into mytable values (1, 'one'), (2, 'two'); + +insert into mytable (id, name) values (1, 'one'), (2, 'two'); + -- The end