]> git.phdru.name Git - sqlconvert.git/blob - sample/sample.sql
Allow whitespaces and comments after the last statement
[sqlconvert.git] / sample / sample.sql
1 SELECT * FROM `mytable`; -- line-comment"
2 INSERT into /* inline comment */ mytable VALUES (1, 'one');
3 /*! directive*/ INSERT INTO `MyTable` (`Id`, `Name`)
4 VALUES (1, 'one');
5
6 -- The end