Previous |
Next
What is the SQL ALTER TABLE Statement?The SQL ALTER TABLE statement is the SQL command that makes changes to the definition of an SQL table. Why Use the SQL ALTER TABLE Statement?Anytime you want to change the definition of an SQL table. For example, you could:
How To Use the SQL ALTER TABLE StatementThe SQL ALTER TABLE command is used as follows. SQL ALTER TABLE Statement Syntax
SQL ALTER TABLE Statement Example 1 - Add a Column The following example adds a new column into the person table. Before the operation takes place the following columns exists in the table:
This ALTER TABLE Statement is executed:
Results from the execution of the SQL ALTER TABLE statement are:
SQL ALTER TABLE Statement Example 2 - Alter a Column Datatype The following example changes the datatype of an existing column in the person table. Before the operation takes place the following columns exists in the table:
This ALTER TABLE Statement is executed:
Results from the execution of the SQL ALTER TABLE statement are:
SQL ALTER TABLE Statement Example 3 - Drop a column The following example removes an existing column in the person table. Before the operation takes place the following columns exists in the table:
This ALTER TABLE Statement is executed:
Results from the execution of the SQL ALTER TABLE statement are:
|
| HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX |
| Copyright© 1999-2010, First Place Software, Inc. |


