X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=demo%2Fdemo.sql;h=49061f7899f4370a7ba10e3d2834931568705065;hb=3ca451ce7cd26a5444c2dc3897f7559db062de59;hp=64818c3818e1208d6ccde243a3aadd1e8e7dfd00;hpb=5a69ae8c9e133b96d9a7c880b57d1cbca952ec54;p=sqlconvert.git diff --git a/demo/demo.sql b/demo/demo.sql index 64818c3..49061f7 100644 --- a/demo/demo.sql +++ b/demo/demo.sql @@ -1,6 +1,14 @@ SELECT * FROM `mytable`; -- line-comment" + INSERT into /* inline comment */ mytable VALUES (1, 'тест'); -/*! directive*/ INSERT INTO `MyTable` (`Id`, `Name`) + +/*! directive*/; + +INSERT INTO `MyTable` (`Id`, `Name`) VALUES (1, 'one'); +insert into mytable values (1, 'one'), (1, 'one'); + +insert into mytable (id, name) values (1, 'one'), (1, 'one'); + -- The end