SQL Server中,如果目标表存在:
1
|
insert ?into ?目标表? select ?*? from ?原表; |
SQL Server中,,如果目标表不存在:
1
|
select ?*? into ?目标表? from ?原表; |
Oracle中,如果目标表存在:
1
2
|
insert ?into ?目标表? select ?*? from ?原表; commit ; |
Oracle中,如果目标表不存在:
1
|
create ?table ?目标表? as ?select ?*? from ?原表; |
转载请注明出处:
未经允许不得转载:lxfamn » SQL语句 怎么把一个表的数据复制到另外一个表里面