SQL Server中,如果目标表存在:
insert into 目标表 select * from 原表;
insert
into
目标表
select
*
from
原表;
SQL Server中,,如果目标表不存在:
select * into 目标表 from 原表;