ALTER TABLE "table_name" DROP "column_name";
ALTER TABLE tableName
DROP COLUMN columnName;
ALTER TABLE my_schema.my_table DROP COLUMN my_column;
Deletes a column from a table.
Example: Removes the first_name column from the users table.
ALTER TABLE users
DROP COLUMN first_name