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

2024-12-30 22:10:18
推荐回答(2个)
回答1:

不是很麻烦啊,
insert into ##tablename
select * from tablename2
where
应该就可以了

回答2:

在sql中怎样在临时表中批量插入数据?
insert into ##tablename
select * from tablename2
where
应该就可以了