In MySQL you can insert multiple rows like this:
INSERT INTO \'tablename\' (\'column1\', \'column2\') VALUES
(\'data1\', \'data2\'),
(\'data1\', \'da
Yes, as of SQLite 3.7.11 this is supported in SQLite. From the SQLite documentation:
(when this answer was originally written, this was not supported)
For compatibility with older versions of SQLite, you can use the trick suggested by andy and fearless_fool using UNION
, but for 3.7.11 and later the simpler syntax described in here should be preferred.