mssql insert into 和insert into select性能比较
作者:
今天没事,测了一下insert into和insert into select的性能,没想到这两个性能差别这么大。
使用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毫秒上下徘徊。
您可能感兴趣的文章:
- 解析MySQL中INSERT INTO SELECT的使用
- SELECT INTO 和 INSERT INTO SELECT 两种表复制语句详解(SQL数据库和Oracle数据库的区别)
- postgresql insert into select无法使用并行查询的解决
- postgresql 13.1 insert into select并行查询的实现
- SQL Server之SELECT INTO 和 INSERT INTO SELECT案例详解
- 关于MySQL中“Insert into select“ 的死锁情况分析
- mysql使用insert into select插入查出的数据
- mysql中insert into...select语句优化方式
- MySQL insert into select 主键冲突解决方案
- sql中select into和insert select的用法小结