直接用
select * into tab2 from tab1
或者
create tab2(...)
go
insert into tab2
select * from tab1
这种形式不行?