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
To add columns in existing table:
ALTER TABLE table_name ADD column_name DATATYPE NULL
To delete columns in existing table:
ALTER TABLE table_name DROP COLUMN column_name