How to remove a column from an existing table?
I have a table MEN
with Fname
and Lname
I need to remove the Lname
How to do it?
Solution
ALTER TABLE MEN DROP COLUMN Lname
The post How to Remove a Column from an Existing Table appeared first on Solved.