SQLiteで複数の行を1行のINSERT文でまとめて追加

insert into t1 (f1, f2, f3)
values ('a1', 'b1', 'c1'),
       ('a2', 'b2', 'c2'),
       ('a3', 'b3', 'c3')