Description
Supported engines: Presto and SparkSQL
Applicable table: Native Iceberg tables and external tables
Purpose: Delete a field from a data table.
Standard Statement
ALTER TABLE table_name DROP COLUMN column_name
Parameter
table_name
: Name of the target table
column_name
: Name of the column to be deleted
Example
ALTER TABLE `TBL` DROP COLUMN `COL2`
Was this page helpful?