Sql-server – How to remove a column from an existing table

sql server

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?

Best Answer

ALTER TABLE MEN DROP COLUMN Lname