Add and delete fields in MySQL

Source: Internet
Author: User

How can I add fields to MySQL? This is a problem that many new users have just mentioned. The following describes how to add and delete fields in MySQL.

Add a MySQL field:

 
 
  1. Alter table 'user _ movement_log'
  2. Add column GatewayId int not null default 0 AFTER 'regionid' (AFTER which field is added)
  3.  

Delete field:

 
 
  1. alter table `user_movement_log` drop column Gatewayid  
  2.  

Adjust the field order:

 
 
  1. Alter table 'user _ movement_log 'CHANGE 'gatewayid' int not null default 0 AFTER RegionID
  2.  
  3. // Primary key
  4.  
  5. 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
  6.  
  7. Alter table t2 add d timestamp;
  8. Alter table infos add ex tinyint not null default '0'; // delete a column
  9.  
  10. Alter table t2 drop column c; // rename a column
  11.  
  12. Alter table t1 change a B integer;
  13. // Change the column type
  14.  
  15. Alter table t1 change B bigint not null;
  16. Alter table infos change list tinyint not null default '0 ';
  17. // Rename the table
  18.  
  19. Alter table t1 rename t2; add an index
  20.  
  21. Mysql> alter table tablename change depno int (5) not null;
  22. Mysql> alter table tablename add index name (field name 1 [, field name 2…]);
  23. Mysql> alter table tablename add index emp_name (name); add the index with the primary keyword
  24.  
  25. Mysql> alter table tablename add primary key (id); add an index with unique restrictions
  26.  
  27. Mysql> alter table tablename add unique emp_name2 (cardnumber); delete an index
  28.  
  29. Mysql> alter table tablename drop index emp_name; modify the table:
  30.  

Add field:

 
 
  1. Mysql> alter table table_name ADD field_name field_type; modify the original field name and type:
  2.  
  3. Mysql> alter table table_name CHANGE old_field_name new_field_name field_type; delete a field:
  4.  
  5. Mysql> alter table table_name DROP field_name;

How MySQL defines foreign keys

Detailed description of the actual configuration of SlowLog in MySQL

Provides you with an in-depth understanding of MYSQL string connection

MySQL Field Type

Mysql foreign Key Usage Analysis

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.