使用insert into table(field, ...)values(value, ...),insert into table(field, ...)values(value, ...)...的情況

使用insert into table(field, ...)select(value,...) union all select(value,...) union all select(value,...) ...的情況

我一次插入的數據是:1190條。用insert into所用的時間在510毫秒上下徘徊,而用insert into select所用的時間在16毫秒上下徘徊。