add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,25 @@
# odps 表
> 在 ODPS开放数据处理服务中创建和修改表。
> 另请参见 `odps`。
> 更多信息:<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}};`