ALTER TABLE tableName DROP COLUMN columnName;
Deletes a column from a table. Example: Removes the first_name column from the users table. ALTER TABLE users DROP COLUMN first_name