SQL Server中,若是目標表存在:sql
insert
into
目標表
select
*
from
原表;
spa
SQL Server中,,若是目標表不存在:code
select
*
into
目標表
from
原表;
it
Oracle中,若是目標表存在:table
insert
into
目標表
select
*
from
原表;
class
commit
;
create
table
目標表
as
select
*
from
原表;