Requirements
In daily needs, it is a very common operation for users to log in to a system using their mobile phone number or email address. So how to establish a reasonable index on fields like mobile phone number or email address? Woolen cloth?
Prefix index
Prefix index uses a part of a field value as an index. If you do not specify the length of the index field when creating an index in MySQL, the entire string will be used to build the index.
语句1: alter table test add index idx(email); 语句2: alter table test add index idx(email(8));
For statement 1, the created index will contain the entire email string value in each record.
For statement 2, the index created stores the first 8 bytes of the email field in each record.
The advantage of using a prefix index is obvious, that is, the index will occupy less space, the entire index tree will be more compact, and the height of the tree will be relatively lower.
But correspondingly, the index discrimination will become lower, which may lead to an increase in the number of index scan rows.
When we create an index, the distinction of the index is a very important indicator. The higher the resolution, the fewer duplicate values and the more efficient the scan.
Properly planning the length of the prefix index can not only save space, but also avoid the need to scan additional rows. The specific length to use is recommended to be judged and tested based on our actual business scenarios.
Reverse order Prefix index
Reverse order Prefix index has a classic usage scenario, which is to index ID numbers.
Suppose we now want to maintain the identity information of everyone in a city or county, and querying by ID number is a high-frequency scenario.
The ID number has 15 or 18 digits in total. Generally speaking, the first 6 digits of the ID number of people in the same city or county are generally the same. If the ID number is directly indexed in full, it will be compared. Wasted space, leading to performance degradation. If you use a direct prefix index, the first 6 bits have very little (or even no) discrimination, since most values have the same first 6 bits.
At this time, the benefits of using the reverse prefix index are reflected.
We first store the ID card in reverse order, or make a redundant ID card number field in reverse order, and then take the first 6 digits as a prefix index.
The distinction between the last 6 digits of the ID card is basically enough for us. If you still feel that the query speed is not enough, then it is no problem to take the first 8 digits.
The above is the detailed content of How to add an efficient index to a string in MySQL. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools