列表

详情


tb1_ p为一个ODPS的分区表,包含一个“p1='1' 的分区,现在想把该分区上的数据删除,达到select * from tb1 where p1='1'查询时,返回结果为空的目的。以下哪个SQL可以实现这个功能?


A. alter table tb1 drop partition (p1='1');

B. delete from table tb1;

C. insert into table tb1 select * from tb1 where 1=2;

D. truncate table tb1;

参考答案: A

详细解析:

alter table user drop if exists partition(region='hangzhou',dt='20180923');


上一题