Usage of alter command in mysql to edit table structure. The specific contents are as follows Modify field type mysql> alter table employee change depno depno int(5) not null; Add index mysql> alter table table name add index index name (field name 1 [, field name 2 ...]); example: mysql> alter table employee add index emp_name (name); Add the primary keyword index mysql> alter table table name add primary key (field name); example: mysql> alter table employee add primary key(id); Add unique restriction index mysql> alter table table name add unique index name (field name); example: mysql> alter table employee add unique emp_name2(cardnumber); View the index of a table mysql> show index from table name; example: mysql> show index from employee; Delete an index mysql> alter table table name drop index index name; example: mysql>alter table employee drop index emp_name; Modify table: add fields: mysql> ALTER TABLE table_name ADD field_name field_type; View the table: mysql> SELECT * FROM table_name; Modify the original field name and type: mysql> ALTER TABLE table_name CHANGE old_field_name new_field_name field_type; To delete a field: ALTER TABLE table_name DROP field_name The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. Finally, I wish you all success in passing the computer level test. You may also be interested in:
|
<<: Detailed explanation of three ways to cut catalina.out logs in tomcat
>>: Detailed explanation of using javascript to handle common events
Connections can be used to query, update, and est...
Table of contents 1. What is lazy loading? 2. Imp...
The <a> tag is mainly used to define links ...
1. Briefly describe the traditional LRU linked li...
This article mainly describes two kinds of underl...
1. <div></div> and <span></s...
Today we are going to implement a Thunder Fighter...
Quick Reading Why do we need to monitor SQL state...
This article mainly introduces the implementation...
After VMware is abnormally shut down, it prompts ...
Our bank's MGR will be launched at the end of...
Table of contents The principle and function of l...
This article describes the MySQL slow query opera...
First, let’s take an example: There is a type fie...
background When we want to log in to the MySQL da...