postgres create table as select & create table like

 1. 准备

  先建立一个基础表:

create table mytb1(id serial,name character varying,age integer);
  在name字段上创建索引:

create index mytb1_name_index on mytb1(name);

  查看mytb1的表结构:   

postgres=# \d mytb1;
                              Table "public.mytb1"
 Column |       Type        |                     Modifiers                     
 
--------+-------------------+---------------------------------------------------
 id     | integer           | not null default nextval('mytb1_id_seq'::regclass)
 name   | character varying | 
 age    | integer           | 
Indexes:
    "mytb1_name_index" btree (name)

  插入两条记录:

postgres=# insert into mytb1(name,age) values('zhangsan',12),('lisi',23);

 2. 使用created table as select

postgres=# create table mytb2 as select * from mytb1;
SELECT 2
  查看mytb2的表结构及表中的数据:

postgres=# \d mytb2
          Table "public.mytb2"
 Column |       Type        | Modifiers 
--------+-------------------+-----------
 id     | integer           | 
 name   | character varying | 
 age    | integer           | 

postgres=# select * from mytb2;
 id |   name   | age 
----+----------+-----
  1 | zhangsan |  12
  2 | lisi     |  23
(2 rows)
可以看到,使用create table as select ,表中的数据会全部复制过去,表结构中的主键,索引,约束等都没有移过去,仅仅是字段复制过去。

3. 使用create table like 

postgres=# create table mytb3 (like mytb1);
CREATE TABLE
  查看mytb3的表结构及表中的数据:
postgres=# \d mytb3
          Table "public.mytb3"
 Column |       Type        | Modifiers 
--------+-------------------+-----------
 id     | integer           | not null
 name   | character varying | 
 age    | integer           | 
postgres=# select * from mytb3;
 id | name | age 
----+------+-----
(0 rows)
表结构中的索引主键也没有一起过来。

create table like的时候通过including来包含索引,约束等。

postgres=# create table mytb5 (like mytb1 including defaults including constraints including indexes);
CREATE TABLE
看看表结构

postgres=# \d mytb5
                              Table "public.mytb5"
 Column |       Type        |                     Modifiers                     
 
--------+-------------------+---------------------------------------------------
 id     | integer           | not null default nextval('mytb1_id_seq'::regclass)
 name   | character varying | 
 age    | integer           | 
Indexes:
    "mytb5_name_idx" btree (name)
现在索引,约束等都全部复制过来。


结论:

create table as select : 只会复制表中的数据,表结构中的索引,约束等不会复制过来。

create table like: 不复制数据,需要复制索引,约束等还要自己including进去。

  • 2
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值