How to remove a column from an existing table?
I have a table MEN with Fname and Lname
MEN
Fname
Lname
I need to remove the Lnam
Lnam
Syntax:
ALTER TABLE TABLE_NAME DROP COLUMN COLUMN_NAME;
For Example:
alter table Employee drop column address;