Help Center>
GaussDB(DWS)>
Getting Started>
Database Quick Start>
Creating and Managing Tables>
Creating a Table
Updated on 2022-06-17 GMT+08:00
Creating a Table
Context
A table is created in a database and can be saved in different databases. Tables under different schemas in a database can have the same name. Before creating a table, perform the operations in Planning a Storage Model.
Creating a Table
Run the following statement to create a table:
1 2 3 4 5 6 7 8 9 |
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);
|
If the following information is displayed, the table has been created:
1 |
CREATE TABLE
|
c_customer_sk, c_customer_id, c_first_name and c_last_name are the column names in the table. integer, char(5), char(6), and char(8) are column name types.
Parent topic: Creating and Managing Tables
Feedback
Was this page helpful?
Provide feedback
Thank you very much for your feedback. We will continue working to improve the
documentation.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot