当前位置:网站首页>sql 常用优化
sql 常用优化
2022-07-07 17:52:00 【whiteye太白】
sql 优化
1. 小表驱动大表
先执行查询数据少的表,再执行查询数据多的表。
2. 建索引,一张表不超过5个索引
避免大量内存占用。
3. 走索引,尽量满足最左匹配,避免索引失效
索引失效:
(1)select *
(2)>、<、!=、between
(3)前置 % 的like查询。
(4)where字段值类型与数据库不一致,存在自动转换。
(5)or连接不同字段。
(6)or连接同一字段,但存在 >、<、!= 非索引查询。(左右查询均为索引时才有效。)
(7)函数或运算导致索引失效。
(8)IS NULL不走索引,IS NOT NULL走索引(表设计:非必要时,字段不要为NULL,设置默认空字符串或0)
(9)复合索出现范围查询时,后面的索引失效 。
(10)IN会走索引,但是当IN的取值范围较大时会导致索引失效。
- ep_range_index_dive_limit这个参数影响in是否使用索引,MySQL 5.6默认10, MySQL。5.7默认200。但是我们代码更倾向于控制在50内。 A表数据大于B表数据时,选择in比exists执行效率要高。 相反,A表数据小于B表数据时,选择exists比较高效。 in先执行子查询,exists先执行外表。
(11)not in会使索引失效,无论在哪种情况not exists 都比 not in 高效。
- 使用 left join 或 not exists 来优化not in 操作。
4. 尽量做到冷热数据分离
减少查询表列数,避免进行冷数据过滤。
5. 调整索引列的顺序
唯一性较好、字段较短、使用频繁的列放在联合索引的最左侧
6. 对于频繁的查询优先考虑使用覆盖索引
走索引时一并查询出数据。
7. 避免数据类型的隐式转换
避免索引失效。
8. 禁止使用 SELECT * 必须使用 SELECT <字段列表> 查询
会存在冗余字段,消耗更多的CPU和网络带宽 会无法使用覆盖索引。
9. 避免使用子查询,可以把子查询优化为 join 操作
子查询会产生大量的临时表也没有索引。
10. 避免使用 JOIN 关联太多的表
关联表越多关联缓存越大。
11. 在明显不会有重复值时使用 UNION ALL 而不是 UNION
UNION ALL不会进行去重操作,加快查询速度。
12. 大SQL拆分,多个同种SQL进行批处理
一个 SQL 只能使用一个cpu 进行计算,拆分后可由多个cpu并行计算。
13. WHERE 从句中禁止对列进行函数转换和计算
避免索引失效。
14. 使用count(*)而不是count(列名)?
综合性能:count(非主键列) < count(主键) < count(1) ≈ count()
count()是SQL92定义的标准统计行数的语法,跟数据库无关,count(*)会统计值为 NULL的行,而
count(列名)不会统计此列为 NULL值的行。
边栏推荐
- UCloud是基础云计算服务提供商
- 国家网信办公布《数据出境安全评估办法》:累计向境外提供10万人信息需申报
- [RT thread env tool installation]
- openEuler 资源利用率提升之道 01:概论
- R language dplyr package mutate_ At function and min_ The rank function calculates the sorting sequence number value and ranking value of the specified data column in the dataframe, and assigns the ra
- How to open an account for stock speculation? Excuse me, is it safe to open a stock account by mobile phone?
- IP 工具类
- 谷歌seo外链Backlinks研究工具推荐
- 【STL】vector
- 2022.07.05
猜你喜欢
转置卷积理论解释(输入输出大小分析)
Install mysql8 for Linux X ultra detailed graphic tutorial
ASP. Net kindergarten chain management system source code
国家网信办公布《数据出境安全评估办法》:累计向境外提供10万人信息需申报
剑指 Offer II 013. 二维子矩阵的和
LeetCode_ 7_ five
Redis master-slave and sentinel master-slave switchover are built step by step
Openeuler prize catching activities, to participate in?
Kirin Xin'an with heterogeneous integration cloud financial information and innovation solutions appeared at the 15th Hunan Financial Technology Exchange Conference
Classification automatique des cellules de modules photovoltaïques par défaut dans les images de lecture électronique - notes de lecture de thèse
随机推荐
R语言dplyr包select函数、group_by函数、filter函数和do函数获取dataframe中指定因子变量中指定水平中特定数值数据列的值第三大的值
Nunjuks template engine
[Verilog advanced challenge of Niuke network question brushing series] ~ multi bit MUX synchronizer
R language ggplot2 visualization: use the ggstripchart function of ggpubr package to visualize the dot strip plot, set the position parameter, and configure the separation degree of different grouped
Install mysql8 for Linux X ultra detailed graphic tutorial
Is PMP beneficial to work? How to choose a reliable platform to make it easier to prepare for the exam!!!
9 atomic operation class 18 Rohan enhancement
A pot of stew, a collection of common commands of NPM and yarn cnpm
论文解读(ValidUtil)《Rethinking the Setting of Semi-supervised Learning on Graphs》
最多可以参加的会议数目[贪心 + 优先队列]
what‘s the meaning of inference
【STL】vector
Redis master-slave and sentinel master-slave switchover are built step by step
Navicat连接2002 - Can‘t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock‘解决
ASP.NET体育馆综合会员管理系统源码,免费分享
LeetCode_ 7_ five
Implement secondary index with Gaussian redis
The DBSCAN function of FPC package of R language performs density clustering analysis on data, checks the clustering labels of all samples, and the table function calculates the two-dimensional contin
LC:字符串转换整数 (atoi) + 外观数列 + 最长公共前缀
浏览积分设置的目的