
SQL ALTER TABLE
Once a table is created in the database, there are many occasions where one may wish to change the structure of the table. Typical cases include the following:
Add a column
Drop a column
Change a column name
Change the data type for a column
Please note that the above is not an exhaustive list. There are other instances where ALTER TABLE is used to change the table structure, such as changing the primary key specification.



