I wish to drop a table column in SQL Server 2012, without affecting other columns in the table (and their data).
How can I do this? Is it possible at all?
So far I’ve tried deleting the column via SQL Server Management Studio, but this says the whole table must be dropped and re-created.
From MSDN
ALTER TABLE dbo.Table DROP COLUMN column_b