]> git.phdru.name Git - sqlconvert.git/blob - demo/demo.sql
Add a semicolon and a newline after directive
[sqlconvert.git] / demo / demo.sql
1 SELECT * FROM `mytable`; -- line-comment"
2 INSERT into /* inline comment */ mytable VALUES (1, 'ั‚ะตัั‚');
3 /*! directive*/;
4 INSERT INTO `MyTable` (`Id`, `Name`)
5 VALUES (1, 'one');
6
7 -- The end