MYSQL adds constraints, deletes constraints, adds columns, modifies columns, and deletes columns.

Source: Internet
Author: User

MYSQL adds constraints, deletes constraints to add columns, modifies columns, and deletes columns to add primary key constraints: alter table name add constraint primary key (for example, PK _ table name) primary key table name (primary key field); add foreign key constraint: alter table add constraint foreign key from the table (for example, FK _ slave table _ master table) foreign key: From the table (foreign key field) references main table (primary key field); Delete the primary key constraint: alter table Name drop primary key; Delete the foreign key constraint: alter table Name drop foreign key (case sensitive); add column: alter table name add column name varchar (30); delete column: alter table Name drop column name; modify the column name MySQL: alter table bbb change nnnnn hh int; modify the column attribute: alter table t_book modify name varchar (22 );

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.