Remove a column from a table.
Section: create and alter tables
Drop a column
sql
sql
ALTER TABLE users DROP COLUMN phone;Explanation
Be careful in production because this is destructive.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing create and alter tables