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
Recently, when I was writing web pages with PHP, I...
1. Docker startup problem: Problem Solved: You ne...
Preface This article mainly introduces the releva...
In the previous article, we have realized the sim...
1. Use contrasting colours. The contrast here ref...
When I was at work today, the business side asked...
<br />I'm basically going crazy with thi...
Since the network requests initiated by native js...
Table of contents 1. Differences between option A...
1. About the file server In a project, if you wan...
v-for directive Speaking of lists, we have to men...
History of ZFS The Z File System (ZFS) was develo...
DetachKeyPair Unbind SSH key pairs from one or mo...
Process structure diagram Nginx is a multi-proces...
Table of contents 1. Download 2. Deployment 3. Ng...