Drop Table Column In MySQL
Here we show how you can drop a column from table in MySQL. Sometime, we not need a particular column of table. So, we delete this column from the table. Syntax: ALTER TABLE table_name DROP COLUMN column_name; First we create a sample table with data. CREATE TABLE `employees` ( `employee_id` int(11) NOT NULL, `employee_name` varchar(100) …