Search code examples
mysqlheidisql

Delete a column in table (PhpMyAdmin/HeidiSQL)


I would like to know how to delete a column in a table, without deleting the rest of the columns.


Solution

  • ALTER TABLE NameofTable DROP COLUMN ColumnName;