1. Computing

Discuss in my forum

Drop Column - MySQL Command

By , About.com Guide

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 drop column [column name];
Also Known As: MySQL Drop Column, Remove Column, Delete Column
Examples:
alter table icecream drop column flavor; 
This removes the column "flavor" from the table called "icecream".
  1. About.com
  2. Computing
  3. PHP / MySQL
  4. MySQL Commands
  5. SQL Drop Column - MySQL Drop Column - Drop Column