odps table

Create and modify tables in ODPS (Open Data Processing Service). See also odps. More information: https://www.alibabacloud.com/help/doc-detail/27971.htm.

create table table_name (col type) partitioned by (col type) lifecycle days;

create table table_name like another_table;

alter table table_name add partition (partition_spec);

alter table table_name drop partition (partition_spec);

drop table table_name;