Drop Column - MySQL Command





Definition: 
Drop column is used to remove a column from a given table. This also removes all data from the column. It is written as alter table


Examples:

ALTER TABLE music DROP COLOMN musicid ;


This removes the column "musicid" from the table called "music".