云数据库 GAUSSDB-创建表:创建表

时间:2024-01-23 20:08:41

创建表

执行如下命令创建表。
1
2
3
4
5
6
7
8
9
postgres=# CREATE TABLE customer_t1
(
    c_customer_sk             integer,
    c_customer_id             char(5),
    c_first_name              char(6),
    c_last_name               char(8)
)
with (orientation = column,compression=middle)
distribute by hash (c_last_name);

当结果显示为如下信息,则表示创建成功。

1
 CREATE TABLE

其中c_customer_sk 、c_customer_id、c_first_name和c_last_name是表的字段名,integer、char(5)、char(6)和char(8)分别是这四个字段名称的类型。

support.huaweicloud.com/devg-v1-gaussdb/gaussdb_devg_0014.html