In SQL Server, you can create, modify, and remove database objects using a graphical user interface (like using the GUI tools in SQL Server Management Studio), or you can use Transact-SQL to do the same tasks. In fact, the GUI tools actually use T-SQL behind the scenes to perform these tasks.
When using Transact-SQL, you can remove a column from a table by using the ALTER TABLE
statement. This statement allows you to change a table’s definition by specifying exactly what changes you require. In our case, we require the removal of a column.