1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 08:55:35 +02:00

odps: delete one case and add one case

Change-Id: I3b6fb2d300a2d27e44110566654fed722fb92441
This commit is contained in:
程亦超(何兮) 2016-05-12 00:17:52 +08:00
parent 8cd264e4f2
commit 3132be399a

View file

@ -14,14 +14,14 @@
`show tables;`
- Describe a table:
`desc {{table_name}};`
- Show table partitions:
`show partitions {{table_name}};`
- Describe table partition:
- Describe a partition:
`desc {{table_name}} partition ({{partition_spec}});`
- Create a partitiond table with lifecycle:
`create table {{name}} ({{col}} {{type}}) partitioned by ({{col}} {{type}}) lifecycle {{days}};`