]> git.phdru.name Git - sqlconvert.git/blobdiff - demo/demo.sql
Tests: Use tox instead of tests/Makefile
[sqlconvert.git] / demo / demo.sql
index bb081d92a784b57530a9ed69f91b4c32e592f297..a3155d591620b1632db33e93c1c669cc509fb374 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'), (2, 'two');
+
+insert into mytable (id, name) values (1, 'one'), (2, 'two');
+
 -- The end