添加分区
alter table 表名 add partition (dt='2016-09-12');

select * from 表名
where dt = '2016-09-12'
limit 10;

 

相关文章: