Add a column to the MySQL table

Source: Internet
Author: User
Adding a column to MySQL if you want to add a column to an already-built table, you can use:

ALTER TABLE table_name ADD column new_column_name varchar () not NULL;

This statement adds a new column to the existing table, which is the last column in the table. If you want to add a column that you specify, you can use:

ALTER TABLE table_name ADD column new_column_name varchar () not NULL after column_name;

The above command means adding a new column after a column. If you want to add to the first column, you can use:

ALTER TABLE table_name ADD column new_column_name varchar () not NULL first;

Example

The first table is like this.

The table that executed the SQL statement

The other ways to add new columns are the same

Add a column to the MySQL table

Related Article

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.