X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=inline;f=demo%2Fdemo.sql;h=49061f7899f4370a7ba10e3d2834931568705065;hb=6f433a4531f0e301f3534de7f0278afbcf79d50e;hp=bb081d92a784b57530a9ed69f91b4c32e592f297;hpb=05b5fb4c6b4e167ffefbd17e9530d87db027d942;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