]> git.phdru.name Git - sqlconvert.git/commitdiff
Extend demo.sql: add extended INSERTs with and w/o columns list
authorOleg Broytman <phd@phdru.name>
Wed, 28 Sep 2016 16:06:58 +0000 (19:06 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 28 Sep 2016 16:06:58 +0000 (19:06 +0300)
demo/demo.sql

index bb081d92a784b57530a9ed69f91b4c32e592f297..49061f7899f4370a7ba10e3d2834931568705065 100644 (file)
@@ -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