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