在sql中怎样在临时表中批量插入数据?

如题所述

第1个回答  2013-06-10
不是很麻烦啊,
insert into ##tablename
select * from tablename2
where
应该就可以了本回答被网友采纳
第2个回答  推荐于2017-08-19
在sql中怎样在临时表中批量插入数据?
insert into ##tablename
select * from tablename2
where
应该就可以了本回答被网友采纳
相似回答