search
HomeDatabaseSQLWhat are the commonly used methods for sql optimization?

Commonly used methods for sql optimization are: 1. Try to avoid full table scans, and consider establishing indexes on the columns involved in where and order by; 2. Try to avoid null values ​​for fields in the where clause. Judgment; 3. Use in and not in with caution; 4. Try to avoid large transaction operations and improve system concurrency.

What are the commonly used methods for sql optimization?

1. Why should we optimize SQL

In the early days of our development project, due to the business data The amount of SQL is relatively small, and the impact of the execution efficiency of some SQL on the running efficiency of the program is not obvious, and development and operation and maintenance personnel cannot judge how efficient SQL is on the running efficiency of the program. Therefore, special optimization of SQL is rarely carried out, and as a result, SQL is rarely optimized. As time accumulates and the amount of business data increases, the impact of SQL execution efficiency on the running efficiency of the program gradually increases. At this time, it is necessary to optimize SQL.

2. Some common methods of SQL optimization

1. To optimize the query, you should try to avoid full table scans. First, you should consider where and order by. Create an index on the column.

2. Try to avoid making null value judgments on fields in the where clause, otherwise the engine will give up using the index and perform a full table scan, such as:

select id from t where num is null

can be set on num The default value is 0. Make sure there is no null value in the num column in the table, and then query like this:

select id from t where num=0

3. Try to avoid using the != or operator in the where clause, otherwise the engine will be abandoned. Index and perform a full table scan.

4. Try to avoid using or in the where clause to connect conditions, otherwise the engine will give up using the index and perform a full table scan, such as:

select id from t where num=10 or num=20

You can query like this:

select id from t where num=10    
union all    
select id from t where num=20

5.in and not in should also be used with caution, otherwise it will lead to a full table scan, such as:

select id from t where num in(1,2,3)

For continuous values, if you can use between, do not use in :

select id from t where num between 1 and 3

6. The following query will also result in a full table scan:

select id from t where name like '%abc%'

7. You should try to avoid expression operations on fields in the where clause, which will Causes the engine to give up using the index and perform a full table scan. For example:

select id from t where num/2=100

should be changed to:

select id from t where num=100*2

8. Try to avoid performing functional operations on fields in the where clause, which will cause the engine to give up using the index and Perform a full table scan. For example:

select id from t where substring(name,1,3)='abc'--name以abc开头的id

should be changed to:

select id from t where name like 'abc%'

9. Do not perform functions, arithmetic operations or other expression operations on the left side of "=" in the where clause, otherwise the system will Indexes may not be used correctly.

10. When using an index field as a condition, if the index is a composite index, the first field in the index must be used as the condition to ensure that the system uses the index, otherwise the index will not will be used, and the field order should be consistent with the index order as much as possible.

11. Do not write meaningless queries. For example, if you need to generate an empty table structure:

select col1,col2 into #t from t where 1=0

This type of code will not return any result set, but it will consume system resources and should be changed. Like this:

create table #t(...)

12. Many times it is a good choice to use exists instead of in:

select num from a where num in(select num from b)

Replace with the following statement:

select num from a where exists(select 1 from b where num=a.num)

13. Not all indexes It is valid for all queries. SQL optimizes queries based on the data in the table. When there is a large amount of duplicate data in the index column, the SQL query may not use the index. For example, if there is a field sex in a table, almost half of it is male and half of female. Then Even if an index is built on sex, it will not affect query efficiency.

14. The more indexes, the better. Although the index can improve the efficiency of the corresponding select, it also reduces the efficiency of insert and update.

Because it is possible to insert or update The index will be rebuilt, so how to build the index needs to be carefully considered and depends on the specific situation.​

It is best not to have more than 6 indexes on a table. If there are too many, you should consider whether it is necessary to build indexes on some columns that are not commonly used.​

15. Try to use numeric fields. If the fields contain only numerical information, try not to design them as character fields. This will reduce the performance of query and connection, and increase storage overhead.

This is because the engine will compare each character in the string one by one when processing queries and connections, and for numeric types, only one comparison is enough.

16. Use varchar instead of char as much as possible, because first of all, variable length fields have small storage space and can save storage space.

Secondly, for queries, in a relatively small field The search efficiency is obviously higher.

17. Do not use select * from t anywhere, replace "*" with a specific field list, and do not return any unused fields.​

18. Avoid frequently creating and deleting temporary tables to reduce the consumption of system table resources.

19. Temporary tables are not unusable, and using them appropriately can make certain routines more efficient, for example, when you need to repeatedly reference a certain data set in a large table or a commonly used table. However, for one-off events, it's better to use an export table.

20. When creating a temporary table, if the amount of data inserted at one time is large, you can use select into instead of create table to avoid causing a large number of logs,

to improve the speed; if the amount of data Not big. In order to alleviate the resources of the system table, you should first create the table and then insert.

21. If temporary tables are used, all temporary tables must be explicitly deleted at the end of the stored procedure, first truncate table, and then drop table. This can avoid long-term locking of system tables.

22. Try to avoid using cursors, because cursors are less efficient. If the data operated by the cursor exceeds 10,000 rows, then you should consider rewriting.​

23. Before using the cursor-based method or the temporary table method, you should first look for a set-based solution to solve the problem. The set-based method is usually more effective.

24. Like temporary tables, cursors are not unusable. Using FAST_FORWARD cursors with small data sets is often better than other row-by-row processing methods, especially when several tables must be referenced to obtain the required data.

Routines that include a "total" in the result set are usually faster than using a cursor. If development time permits, you can try both the cursor-based method and the set-based method to see which method works better.

25. Try to avoid large transaction operations and improve system concurrency.

26. Try to avoid returning large amounts of data to the client. If the amount of data is too large, you should consider whether the corresponding requirements are reasonable.

Related recommendations: "PHP Tutorial", "mysql Tutorial"

The above is the detailed content of What are the commonly used methods for sql optimization?. 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
如何优化Discuz论坛性能?如何优化Discuz论坛性能?Mar 12, 2024 pm 06:48 PM

如何优化Discuz论坛性能?引言:Discuz是一个常用的论坛系统,但在使用过程中可能会遇到性能瓶颈问题。为了提升Discuz论坛的性能,我们可以从多个方面进行优化,包括数据库优化、缓存设置、代码调整等方面。下面将介绍如何通过具体的操作和代码示例来优化Discuz论坛的性能。一、数据库优化:索引优化:为频繁使用的查询字段建立索引,可以大幅提升查询速度。例如

如何优化SQL Server和MySQL的性能,让它们发挥最佳水平?如何优化SQL Server和MySQL的性能,让它们发挥最佳水平?Sep 11, 2023 pm 01:40 PM

如何优化SQLServer和MySQL的性能,让它们发挥最佳水平?摘要:在当今的数据库应用中,SQLServer和MySQL是两个最为常见和流行的关系型数据库管理系统(RDBMS)。随着数据量的增大和业务需求的不断变化,优化数据库性能变得尤为重要。本文将介绍一些优化SQLServer和MySQL性能的常见方法和技巧,以帮助用户利用

Linux性能调优~Linux性能调优~Feb 12, 2024 pm 03:30 PM

Linux操作系统是一个开源产品,它也是一个开源软件的实践和应用平台。在这个平台下,有无数的开源软件支撑,如apache、tomcat、mysql、php等。开源软件的最大理念是自由和开放。因此,作为一个开源平台,linux的目标是通过这些开源软件的支持,以最低廉的成本,达到应用最优的性能。谈到性能问题,主要实现的是linux操作系统和应用程序的最佳结合。一、性能问题综述系统的性能是指操作系统完成任务的有效性、稳定性和响应速度。Linux系统管理员可能经常会遇到系统不稳定、响应速度慢等问题,例如

Sybase与Oracle数据库管理系统的核心差异Sybase与Oracle数据库管理系统的核心差异Mar 08, 2024 pm 05:54 PM

Sybase与Oracle数据库管理系统的核心差异,需要具体代码示例数据库管理系统在现代信息技术领域中扮演着至关重要的角色,Sybase和Oracle作为两大知名的关系型数据库管理系统,在数据库领域中占据着重要地位。虽然它们都属于关系型数据库管理系统,但在实际应用中存在一些核心差异。本文将从多个角度对Sybase和Oracle进行比较,包括架构、语法、性能等

sql中any是什么意思sql中any是什么意思May 01, 2024 pm 11:03 PM

SQL中的ANY关键词用于检查子查询是否返回任何满足给定条件的行:语法:ANY (subquery)用法:与比较运算符一起使用,如果子查询返回任何满足条件的行,则ANY表达式评估为true优点:简化查询,提高效率,适用于处理大量数据局限性:不提供满足条件的特定行,如果子查询返回多个满足条件的行,则只返回true

MySql的SQL语句执行计划:如何优化MySQL的查询过程MySql的SQL语句执行计划:如何优化MySQL的查询过程Jun 16, 2023 am 09:15 AM

随着互联网的快速发展,数据的存储和处理也变得越来越重要。因此,关系型数据库是现代软件平台中不可或缺的组成部分。MySQL数据库已经成为最受欢迎的关系型数据库之一,因为它使用简单,易于部署和管理。然而,在处理大量数据时,MySQL数据库的性能问题经常会成为问题。在本文中,我们将深入探讨MySQL的SQL语句执行计划,介绍如何通过优化查询过程来提高MySQL数据

SQL Server和MySQL性能调优:最佳实践与关键技巧。SQL Server和MySQL性能调优:最佳实践与关键技巧。Sep 11, 2023 pm 12:46 PM

SQLServer和MySQL性能调优:最佳实践与关键技巧摘要:本文将介绍SQLServer和MySQL两个常见的关系型数据库系统的性能调优方法,并提供一些最佳实践和关键技巧,以帮助开发人员和数据库管理员提高数据库系统的性能和效率。引言:在现代的应用开发中,数据库系统是不可或缺的一部分。随着数据量的增长和用户需求的增加,数据库性能的优化变得尤为重要。SQ

数据库搜索效果优化的Java技巧经验分享与总结数据库搜索效果优化的Java技巧经验分享与总结Sep 18, 2023 am 09:25 AM

数据库搜索效果优化的Java技巧经验分享与总结摘要:数据库搜索是大多数应用程序中常见的操作之一。然而,当数据量庞大时,搜索操作可能变得缓慢,从而影响应用程序的性能和响应时间。本文将分享一些Java技巧,帮助优化数据库搜索效果,并提供具体的代码示例。使用索引索引是数据库中提高搜索效率的重要组成部分。在进行搜索操作之前,确保在需要搜索的列上创建了合适的索引。例如

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version