hive添加分区
添加分区 alter table 表名 add partition (dt='2016-09-12');select * from 表名 where dt = '2016-09-12' limit 10;
总结
- 上一篇: 轻量级ORM
- 下一篇: HDU 1036 Average is
添加分区 alter table 表名 add partition (dt='2016-09-12');select * from 表名 where dt = '2016-09-12' limit 10;