Overview An index is a table of correspondence between column values and record rows created by the DBMS based on one or more columns in a table in a certain order, which facilitates DBA management.
According to their usage, indexes are logically divided into three categories
Create Index There are three ways to create indexes: CREATE INDEX CREATE [UNIQUE] INDEX index_name NO tbl_name(index_col_name,...)
The three grammatical elements of the index description
mysql>CREATE INDEX index_customers -> NO mysql_test.customers (cust_name(3)ASC) Query OK, 0 rows affected (0.20 sec) Records:0 Duplicates:0 Warning:0 CREATE TABLE
mysql> USE mysql_test Database changed mysql> CREATE TABLE seller ->( -> seller_id int NOT NULL AUTO_INCREMENT -> seller_name char(50) NOT NLULL, -> seller_address char(50) null, -> product_type int(5) NULL -> sales int NULL -> PRIMARY KEY (seller_id,product_type) -> INDEX index_seller(salse) ->) Query OK, 0 rows affected (0.20 sec) ALTER TABLE Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Simple implementation of mini-vue rendering
>>: Build a WebRTC video chat in 5 minutes
Introduction Incremental backup means that after ...
Table of contents 1. Introduction 2. Principle II...
File transfer between Windows and Linux (1) Use W...
Ubuntu 15.04 opens MySQL remote port 3306. All th...
Unzip the file into a directory This is the direc...
Click here to return to the 123WORDPRESS.COM HTML ...
1. Install shadowsocks sudo apt-get install pytho...
Newbie, record it yourself 1. Install supervisor....
This article introduces an example of how CSS3 ca...
The elements in an HTML document are arranged one...
The <base> tag specifies the default address...
Table of contents Preface: 1. Introduction to rol...
1. The catalina.bat must be set to UTF-8. If I do...
Now if you want to use the video tag in a page, y...
The full name of SSH is Secure SHell. By using SS...