athena alter tabke delete partition code example
Example 1: athena drop partition
ALTER TABLE orders
DROP PARTITION (dt = '2014-05-14', country = 'IN');
Example 2: athena drop partition
ALTER TABLE table_name DROP [IF EXISTS] PARTITION (partition_spec) [, PARTITION (partition_spec)]