On Mon, 29 Apr 2013 16:14:00 -0500
"Michael Black" <[email protected]> wrote:

> sqlite> CREATE TABLE foo( a integer, b integer);
> sqlite> INSERT INTO foo VALUES(1,1);
> sqlite> INSERT INTO foo VALUES(1,2);
> sqlite> INSERT INTO foo VALUES(1,3);

With 3.7.13 at least, 

        insert into foo values (1,1),(1,2),(1,3);

works. 

HTH.

--jkl
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to