To delete a column from a table, use the ALTER TABLE statement followed by DROP COLUMN and specify the name of the column to delete. For example, to delete the subcatid column from the product_items table, the statement would be: alter table product_items drop column subcatid.