How to Drop a Column in MS-SQL

To remove a column from table in MS-SQL Server, use alter table:

alter table employee drop column last_bonus_date ;

IN THIS PAGE