odps-table: rename ddl to table

Change-Id: I85f19f6fdb1df566a500a4353345b2e4b10b2f48
This commit is contained in:
程亦超(何兮)
2016-05-12 20:35:27 +08:00
parent bbc52a9fc7
commit dc961a6400

View File

@@ -0,0 +1,23 @@
# odps table
> Create and modify tables in ODPS (Open Data Processing Service).
- Create a table with partition and lifecycle:
`create table {{table_name}} ({{col}} {{type}}) partitioned by ({{col}} {{type}}) lifecycle {{days}};`
- Create a table based on the definition of another table:
`create table {{table_name}} like {{another_table}};`
- Add partition to a table:
`alter table {{table_name}} add parition ({{partition_spec}});`
- Delete partition from a table:
`alter table {{table_name}} drop partition ({{partition_spec}});`
- Delete table:
`drop table {{table_name}};`