mssql insert into 和insert into select性能比较
2017-02-05
18
使用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条...