From 7bc5c10272d7c58e141aea6bc781fe1173767d5f Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 28 Sep 2016 19:06:58 +0300 Subject: [PATCH] Extend demo.sql: add extended INSERTs with and w/o columns list --- demo/demo.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/demo/demo.sql b/demo/demo.sql index bb081d9..49061f7 100644 --- a/demo/demo.sql +++ b/demo/demo.sql @@ -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 -- 2.39.2