mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-12-26 10:24:40 +03:00
b0e464f98c
Change-Id: I07dca5d9f840490130111da257c38b4d93f4da6d
544 B
544 B
odps ddl
Run ddl task in odps.
- 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 parition 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}};