Alter & Drop

From TRCCompSci - AQA Computer Science
Revision as of 14:19, 24 December 2016 by Admin (talk | contribs) (Created page with "==Adding a Field== To add a column in a table, use the following syntax: <syntaxhighlight lang=sql> ALTER TABLE table_name ADD column_name datatype </syntaxhighlight> ==Dele...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Adding a Field

To add a column in a table, use the following syntax:

ALTER TABLE table_name
ADD column_name datatype

Deleting a Field

Next, we want to delete the column named "DateOfBirth" in the "Persons" table.

We use the following SQL statement:

ALTER TABLE Persons
DROP COLUMN DateOfBirth

Change Data Type

Now we want to change the data type of the column named "DateOfBirth" in the "Persons" table.

We use the following SQL statement:

ALTER TABLE Persons
ALTER COLUMN DateOfBirth year