How to Delete a Column from a Table in MySQL

Notes:

How to delete a column from a table in MySQL:
- To delete a column from a table; we take help of alter table command

Basic Syntax:
alter table tablename drop columnname;

Ex:
alter table tbl_student drop DOB;

Interview Questions: