SQL Server Information and Resources |
Custom Search
|
You can add new columns to an existing table. .
ALTER TABLE [dbo].[phone] ADD inactive_date DATETIME NULL GO
You can add modify an existing column
ALTER TABLE [dbo].[person]
ALTER COLUMN [lastname] VARCHAR(35) NULL
GO