tbl_p为一个Maxcompute的分区表,包含一个p1=’1’的分区,现在想把该分区上的数据删除,达到使用select * from tbl where pi=’1’ 查询时,返回结果为空的目的。以下()SQL可以实现该功能。
(A)truncate table tbl;
(B)alter table tbl drop partition (p1=’1’);
(C)insert into table tbl select * fron tbl where 1=2;
(D)delete from table tbl;
参考答案
继续答题:下一题