欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 数据库 > MsSql

mssql insert into 和insert into select性能比较

发布时间:2010-03-05 作者: 来源:转载
今天没事,测了一下insertinto和insertintoselect的性能,没想到这两个性能差别这么大。
使用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毫秒上下徘徊。

相关推荐