oracle数据库【表复制】insert into select from跟create table as select * from 两种表复制语句区别

时间:2020-11-26 06:38:11

create table  as select * from和insert into select from两种表复制语句区别

create table targer_table as select * from source_table
insert into target_table(column1,column2) select column1,column2 from source_table

以上两句都是将源表source_table的记录插入到目标表target_table,但两句又有区别。 
第一句(create table  as select * from)要求目标表target_table不存在,因为在插入时会自动创建。 
第二句(insert into select from)要求目标表target_table存在,由于目标表已经存在,所以我们除了插入源表source_table的字段外,还可以插入常量,如sql语句:

insert into target_table(column1,column2) select column1,5 from source_table  

例中的:5;

无论是create table  as select * from还是insert into select from, from后面的都是源表(source_table);

1、Insert into Select from 语句
      语句形式为:Insert into targer_table(field1,field2,...) select value1,value2,... from source_table     
      要求目标表 targer_table必须存在,由于目标表targer_table已经存在,所以我们除了插入源表source_table的字段外,还可以插入常量。示例如下:

--1.创建测试表:

CREATE TABLE Table1
(
a varchar(10) PRIMARY KEY,
b varchar(10),
c varchar(10)
);
CREATE TABLE Table2
(
a varchar(10) PRIMARY KEY,
c varchar(10),
d int
);

--2.创建测试数据:

Insert into Table1 values ('赵', 'asds', '');
Insert into Table1 values ('钱', 'asds', '');
Insert into Table1 values ('孙', 'asds', '');
Insert into Table1 values ('李', 'asds', null);

查询目标表:

select * from Table2
没有记录;
--3.INSERT INTO SELECT语句复制表数据:
Insert into Table2(a, c, d) select a,c,5 from Table1
 
--4.显示更新后的结果:
select * from Table2;
A C D
1 赵 90 5
2 钱 100 5
3 孙 80 5
4 李 5
注意:D字段的值全部是常量5;
--5.删除测试表:
drop TABLE Table1
drop TABLE Table2

2、create table  as select * from语句

语句形式为:create table targer_table as select * from source_table;

要求目标表Table2不存在,因为在插入时会自动创建表Table2,并将Table1中指定字段数据复制到Table2中。示例如下:

 --1.创建测试表:
CREATE TABLE Table1
(
a varchar(10) PRIMARY KEY,
b varchar(10),
c varchar(10)
);
--2.创建测试数据:
Insert into Table1 values ('赵', 'asds', '');
Insert into Table1 values ('钱', 'asds', '');
Insert into Table1 values ('孙', 'asds', '');
Insert into Table1 values ('李', 'asds', null);
--3.create table as select * from语句创建表Table2并复制数据:
create table TABLE2 as select * from TABLE1;
--4.显示更新后的结果:
select * from Table2
A B C
1 赵 asds 90
2 钱 asds 100
3 孙 asds 80
4 李 asds
--5.删除测试表:
drop TABLE Table1
drop TABLE Table2

附:

注意:

create table targer_table as select * from source_table是会复制表结构+表数据,

而create table targer_table as select * from source_table where 1=2;只会创建相同的表结构,不会复制表数据。

Create table as select 语句的两点说明

SQL > create table emp_copy as select * from emp where deptno=10;

第一,注意emp_copy表中没有定义任何列名,因为我们在列子句中用通配符从emp表取得数据,让Oracle像emp表中一样生成emp_copy表中的列——相同名称,相同数据类型定义。

第二,SQL*PLUS中可以发出的任何select语句可以放在create table as select 语句中,然后Oracle会自动获得从emp表选择的数据,在进emp_copy表中。但是 如果select语句的列子句中包括特定列清单,则create table子句要列出表中要包括的列,放在括号中,例如:

SQL > create table emp_copy_2 (empno,sal) as select empno, sal from emp where deptno=10;

大家都知道create table a as select * from b可以创建一个与b表结构一样的表,但是在实际应用中最好不要这么创建表。原因是这样只创建表的结构,而不会将原表的默认值一起创建。

说白了,表结构出来了,默认值没有。

另外,但是有一个我对一个大表执行create table a as select * from b时候报了一个temp表空间不足,不知道是什么原因,记录一下。下次发现在处理吧。