SQL ADD COLUMN – Add Column To Database Table
We can add a column to the table in two ways. First is using sql server management studio graphical interface. Second one is using SQL command ADD COLUMN. T-SQL ADD COLUMN Syntax: ALTER TABLE dbo.Table ADD <Column> <Data Type> NULL (or) NOT NULL Column will be created on the end of the table. If the… Read More »