X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=demo%2Fdemo.sql;h=49061f7899f4370a7ba10e3d2834931568705065;hb=7bc5c10272d7c58e141aea6bc781fe1173767d5f;hp=bb081d92a784b57530a9ed69f91b4c32e592f297;hpb=d2b1132e8acb8f8797ce988b52463cea3c84a279;p=sqlconvert.git diff --git a/demo/demo.sql b/demo/demo.sql index bb081d9..49061f7 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'), (1, 'one'); + +insert into mytable (id, name) values (1, 'one'), (1, 'one'); + -- The end