About operations related to SQL ALTER TABLE statements

Source: Internet
Author: User
SQL ALTER TABLE statements are important in PHP operations and will be explained in this article.

SQL ALTER TABLE Syntax

To add columns to a table, use the following syntax:

ALTER TABLE table_name
ADD column_name datatype

To delete a column from a table, use the following syntax:

ALTER TABLE table_name
DROP COLUMN column_name

Note: Some database systems do not allow this method of deleting columns in a database table (DROP column column_name).

To change the data type of a column in a table, use the following syntax:

ALTER TABLE table_name
ALTER COLUMN column_name datatype

SQL ALTER TABLE Instance

Now, we want to add a new column named "Birthday" in the table "Persons".

We use the following SQL statements:

ALTER TABLE Persons
ADD Birthday Date

Note that the type of the new column "Birthday" is date and can hold the date. The data type specifies the type of data that can be stored in the column.

Changing data type instances

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

We use the following SQL statements:

ALTER TABLE Persons
ALTER COLUMN Birthday Year

Note that the data type of the "Birthday" column is year, which can hold 2-bit or 4-bit formats.

DROP COLUMN Instance

Next, we delete the "Birthday" column in the "Person" table:

ALTER TABLE Person
DROP COLUMN Birthday

This article on the SQL ALTER table is related to the explanation, more learning materials clear focus on the PHP Chinese network can be viewed.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.