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