Demo of using MySQL to modify table fields

Source: Internet
Author: User

The following articles mainly describe how to modify table fields in MySQL, and describe the actual operation code for modifying table fields in MySQL, if you are interested in the actual operations, you can click to view the following articles. I hope you will gain some benefits after browsing it,

Modify Table fields in MySQL:

Primary Key 549830479

 
 
  1. alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add primary key (new_field_id); 

Add a new column 549830479

 
 
  1. alter table t2 add d timestamp;  
  2. alter table infos add ex tinyint not null default '0'; 

Delete column 549830479

 
 
  1. alter table t2 drop column c; 

Rename column 549830479

 
 
  1. alter table t1 change a b integer; 

Change column type 549830479

 
 
  1. alter table t1 change b b bigint not null;  
  2. alter table infos change list list tinyint not null default '0'; 

MySQL needs to rename table 549830479 in modifying table fields

 
 
  1. alter table t1 rename t2; 

Add index 549830479

 
 
  1. MySQL> alter table tablename change depno int (5) not null;
  2. MySQL> alter table tablename add index name (field name 1 [, field name 2…]);
  3. MySQL> alter table tablename add index emp_name (name );

Index with primary keyword 549830479

 
 
  1. MySQL> alter table tablename add primary key(id); 

Add an index of 549830479 with unique restrictions

 
 
  1. MySQL> alter table tablename add unique emp_name2(cardnumber); 

Delete An index 549830479

 
 
  1. MySQL>alter table tablename drop index emp_name; 

Modify Table: 549830479

Add field: 549830479

 
 
  1. MySQL> ALTER TABLE table_name ADD field_name field_type; 

Modify the original field name and type: 549830479

 
 
  1. MySQL> ALTER TABLE table_name CHANGE old_field_name new_field_name field_type;  

Delete field: 549830479

 
 
  1. MySQL> ALTER TABLE table_name DROP field_name; 

The above content is an introduction to modifying table fields in MySQL. I hope you will find some gains.

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.