Home  >  Article  >  Database  >  How to add index in mysql

How to add index in mysql

青灯夜游
青灯夜游Original
2019-05-08 10:52:1831352browse

Mysql method of adding an index: You can add it through the [create table] statement, such as [CONSTRAINT PRIMARY KEY | INDEX [807053e397f7ee6849c7324c778ecc6d] [624a8af8f0856a44a4409ac43c567197] 61eac41d0a595aabb467f5fb2a89be00: Specify the index name. A table can create multiple indexes, but each index has a unique name in the table.

● 722e3d59fd24604761db25f00f9b264f: Specify the name of the table to create an index.

● 4856a503a57d954e03d677c32e973360: Specify the column name to create an index. You can usually consider using columns that frequently appear in the JOIN clause and WHERE clause in the query statement as index columns.

● 93d887edaff759fd3eed38159bc15ea1: Optional. Specifies that the length characters preceding the column are used to create the index. Creating an index using part of a column can help reduce the size of the index file and save the space occupied by the index columns. In some cases, only the prefix of a column can be indexed. The length of an index column has a maximum limit of 255 bytes (1000 bytes for MyISAM and InnoDB tables). If the length of an index column exceeds this limit, it can only be indexed using the column's prefix. In addition, columns of type BLOB or TEXT must also use prefix indexes.

● ASC|DESC: Optional. ASC specifies that the index is sorted in ascending order, DESC specifies that the index is sorted in descending order, and the default is ASC.

2. Use the CREATE TABLE statement

The index can be created at the same time as creating the table (CREATE TABLE). Syntax format:

1. Create a primary key index

CONSTRAINT PRIMARY KEY [索引类型] (<列名>,…)

When using the CREATE TABLE statement to define column options, you can create a primary key by adding PRIMARY KEY directly after a column definition. When the primary key is a multi-column index composed of multiple columns, this method cannot be used. It can only be implemented by adding a PRIMARY KRY (e147dec42e83e3b84883e9b9d2f9cc02,...) clause at the end of the statement. .

2. Create a general index

 KEY | INDEX [<索引名>] [<索引类型>] (<列名>,…)

3. Create a unique index

UNIQUE [ INDEX | KEY] [<索引名>] [<索引类型>] (<列名>,…)

4. Create a foreign key index

FOREIGN KEY <索引名> <列名>

Example 1: Create a table tb_stu_info, and create a general index on the height field of the table.

mysql> CREATE TABLE tb_stu_info
    -> (
    -> id INT NOT NULL,
    -> name CHAR(45) DEFAULT NULL,
    -> dept_id INT DEFAULT NULL,
    -> age INT DEFAULT NULL,
    -> height INT DEFAULT NULL,
    -> INDEX(height)
    -> );

Example 2: Create a table tb_stu_info2 and use the UNIQUE keyword to create a unique index on the id field of the table.

mysql> CREATE TABLE tb_stu_info2
    -> (
    -> id INT NOT NULL,
    -> name CHAR(45) DEFAULT NULL,
    -> dept_id INT DEFAULT NULL,
    -> age INT DEFAULT NULL,
    -> height INT DEFAULT NULL,
    -> UNIQUE INDEX(id)
    -> );

3. Use the ALTER TABLE statement

While using the ALTER TABLE statement to modify the table, you can also add changes to the existing table. Add index. The specific method is to add one or more of the following syntax components to the ALTER TABLE statement.

1. Create a primary key index

ADD PRIMARY KEY [<索引类型>] (<列名>,…)

2. Create a general index

ADD INDEX [<索引名>] [<索引类型>] (<列名>,…)

3. Create a unique index

ADD UNIQUE [ INDEX | KEY] [<索引名>] [<索引类型>] (<列名>,…)

4. Create a foreign key index

ADD FOREIGN KEY [<索引名>] (<列名>,…)

Example 1:After creating a table tb_stu_info3, use the UNIQUE keyword to create a unique index on the id field of the table.

mysql> CREATE TABLE tb_stu_info3
    -> (
    -> id INT NOT NULL,
    -> name CHAR(45) DEFAULT NULL,
    -> dept_id INT DEFAULT NULL,
    -> age INT DEFAULT NULL,
    -> height INT DEFAULT NULL,
    -> );
Query OK,0 rows affected (0.40 sec)
mysql>ALTER TABLE tb_stu_info3 ADD UNIQUE (id) ;

4. Display index information

Use the SHOW INDEX command to list the relevant index information in the table. Output information can be formatted by adding \G.

Example:

mysql> SHOW CREATE TABLE tb_stu_info\G
*************************** 1. row ***************************
       Table: tb_stu_info
Create Table: CREATE TABLE `tb_stu_info` (
  `id` int(11) NOT NULL,
  `name` char(45) DEFAULT NULL,
  `dept_id` int(11) DEFAULT NULL,
  `age` int(11) DEFAULT NULL,
  `height` int(11) DEFAULT NULL,
  KEY `height` (`height`)
) ENGINE=InnoDB DEFAULT CHARSET=gb2312
1 row in set (0.01 sec)

The above is the detailed content of How to add index in mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use mysql commentNext article:How to use mysql comment