]> git.phdru.name Git - sqlconvert.git/commitdiff
Update extended INSERTs in demo.sql
authorOleg Broytman <phd@phdru.name>
Sun, 19 Mar 2017 16:17:00 +0000 (19:17 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 19 Mar 2017 16:17:00 +0000 (19:17 +0300)
demo/demo.sql

index 49061f7899f4370a7ba10e3d2834931568705065..a3155d591620b1632db33e93c1c669cc509fb374 100644 (file)
@@ -7,8 +7,8 @@ INSERT into /* inline comment */ mytable VALUES (1, 'ั‚ะตัั‚');
 INSERT INTO `MyTable` (`Id`, `Name`)
 VALUES (1, 'one');
 
-insert into mytable values (1, 'one'), (1, 'one');
+insert into mytable values (1, 'one'), (2, 'two');
 
-insert into mytable (id, name) values (1, 'one'), (1, 'one');
+insert into mytable (id, name) values (1, 'one'), (2, 'two');
 
 -- The end