Mysql 3-view the table structure, modify and delete the data table _ MySQL

Source: Internet
Author: User
Mysql 3-view table structure, modify and delete data tables bitsCN. comMysql 3-view table structure, modify and delete data tables view table structure
You can use DESCRIBE or show create table statements to view the TABLE structure. 1. view the basic structure statement of the TABLE: describe table name; 2. view the detailed structure statement of the TABLE: show create table name; instance: show create table example/G to modify the TABLE
1. modify the TABLE name in Mysql by using alter table. The specific syntax is: alter table old TABLE name RENAME [TO] new TABLE name; TO parameter is an optional parameter, whether the statement execution will not be affected. 2. modify the data type of a field in Mysql. The alter table statement can also be used to modify the data type of a field. Syntax: alter table name MODIFY attribute name data type; 3. MODIFY the field name in Mysql. The alter table statement can also be used to MODIFY the field name. Syntax: alter table name CHANGE old property name new attribute name new data type; 4. add a field in Mysql, the alter table statement can also be used to add a field. syntax: alter table name attribute name 1 data type [integrity constraints] [FIRST | AFTER attribute name 2];
The "attribute name 1" parameter refers to the name of the field to be added, the "data type" parameter refers to the data type of the newly added field, and the "integrity constraint condition" is an optional parameter, used to set integrity constraints for new fields. Example: 1. ADD fields without complete constraints (added to the end by default) alter table user ADD phone VARCHAR (20 ); 2. ADD the field alter table user ADD age INT (4) not null with integrity constraints; 3. ADD the field alter table user ADD num INT (8) at the first position of the TABLE) primary key first; add the num field to the beginning of the table and set the num field as the primary key. 4. ADD the field alter table user ADD address VARCHAR (30) not null after phone AFTER the specified position of the TABLE; 5. delete the field in Mysql, the alter table statement can also be used to delete fields in a TABLE. Syntax: alter table name DROP attribute name. 6. modify the field arrangement position in Mysql. The alter table statement can also be used to modify the field arrangement position. Syntax: alter table name MODIFY attribute name 1 data type FIRST | AFTER attribute name 2;
The "attribute name 1" parameter refers to the name of the field to be modified, and the "data type" refers to the data type of "attribute name 1. Example: 1. modify the field to the first position. Alter table user MODIFY stu_name VARCHAR (20) FIRST; 2. MODIFY the field to the specified location alter table user MODIFY sex TINYINT (1) AFTER id; 7. change the table storage engine Mysql storage engine refers to the storage type of tables in the Mysql database. Mysql storage types include InnoDB, MyISAM, and MEMORY. In Mysql, the alter table statement can also be used to modify the storage engine type of a TABLE. The syntax is: alter table name ENGINE = storage ENGINE name; use show engines/G to view the data types supported by the Mysql database. Instance: alter table user ENGINE = InnoDB; 8. the foreign key constraint for deleting a TABLE is in Mysql. The alter table statement can also be used to delete the foreign key constraint of a TABLE. Syntax: alter table name drop foreign key alias; instance: alter table example3 drop foreign key c_fk; delete TABLE
In Mysql, the drop table statement is used to delete a TABLE. 1. to Delete a non-associated Mysql TABLE, you can directly use the drop table statement to delete the TABLE. The other syntax is: drop table name; 2. to delete a parent table associated with another table, delete the foreign key constraint first, and then delete the parent table. Author junjieguobitsCN.com
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.