Mysql-SQL optimization summary, mysql-SQL Summary

Source: Internet
Author: User

Mysql-SQL optimization summary, mysql-SQL Summary

1. First, you should create an index on the columns where and order by to avoid full table scanning.

2. Try to avoid null value determination on the field in the where clause. Otherwise, the engine will discard the index and perform full table scan.

select id from t where num is null

It is recommended that you do not leave null for the database field and try to use not null to fill the database. Remarks, descriptions, comments, and so on can be set to NULL. Otherwise, it is best not to use NULL.

3. Try to avoid using it in the where clause! = Or <> operator. Otherwise, the engine will discard the index for full table scanning.

4. Try to avoid using or in the where clause to connect conditions.If a field has an index and a field does not have an index, the engine will discard the index and perform a full table scan. For example:

select id from t where num=10 or Name = 'admin'

You can query it as follows:

select id from t where num = 10union allselect id from t where Name = 'admin'

 5. Use in and not in with caution. Otherwise, full table scan may occur.Such:

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

 

For continuous values, you can use between instead of in.

select id from t where num between 1 and 3

 

In many cases, replacing in with exists is a good choice:

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

 

Replace the following statement:

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

 

6. The following query will also scan the entire table, with the wildcard at the beginning.

select id from t where name like ‘%abc%’

 

7,If a parameter is used in the where clause, a full table scan is performed.. Because SQL parses local variables only at runtime, the optimizer cannot postpone the selection of the access plan to runtime; it must be selected at compilation. However, if an access plan is created during compilation, the value of the variable is still unknown and thus cannot be used as an input for index selection. The following statement performs a full table scan:

select id from t where num = @num

You can change it to force query to use the index:

Select id from t with (index name) where num = @ num

 

8. Avoid performing expression operations on fields in the where clause as much as possible. This will cause the engine to stop using the index for full table scanning.. For example:

select id from t where num/2 = 100

Should be changed:

select id from t where num = 100*2

 

9. Avoid performing function operations on fields in the where clause as much as possible. This will cause the engine to stop using the index for full table scanning.

Select id from t where substring (name, 2005) = 'abc' -- idselect id starting with abc from t where datediff (day, createdate, '2017-11-30 ′) = 0 -- '2017-11-30 '-- generated id

 

Should be changed:

select id from t where name like 'abc%'select id from t where createdate >= '2005-11-30' and createdate < '2005-12-1'

 

10. do not perform functions, arithmetic operations, or other expression operations on the left side of "=" in the where clause. Otherwise, the system may not be able to correctly use the index.

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

12. Do not write meaningless queries. 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 will consume system resources, should be changed to this: create table # t (...)

13. In the Update statement, if only one or two fields are modified, do not Update all fields. Otherwise, frequent calls may cause significant performance consumption and a large number of logs.

14. For tables with more than a large data size (hundreds of rows are larger), we need to JOIN the tables by page first. Otherwise, the logical reading will be very high and the performance will be poor.

15. select count (*) from table; in this way, the count without any conditions will cause full table scanning without any business significance, which must be eliminated.

16. The more indexes, the better. indexes can improve the select efficiency, but also reduce the insert and update efficiency, because the insert or update indexes may be rebuilt, therefore, you need to carefully consider how to create an index, depending on the actual situation. It is recommended that the number of indexes in a table be no more than 6. If there are too many indexes, consider whether the indexes on some columns that are not frequently used are necessary.

17. Do not update the clustered index data column as much as possible, because the order of the clustered index data column is the physical storage order of the table records, once the column value changes, the sequence of the entire table record will be adjusted, which will consume considerable resources. If the application system needs to frequently update the clustered index data column, consider whether to create the index as a clustered index.

18. use numeric fields whenever possible. If fields containing only numerical information are not designed as numeric fields, this will reduce query and connection performance and increase storage overhead. This is because the engine compares each character in the string one by one during query and connection processing, and only one comparison is required for the number type.

19. Try to replace char/nchar with varchar/nvarchar, because the storage space of the variable-length field is small, which can save storage space. Secondly, for queries, searching in a relatively small field is obviously more efficient.

20. Do not use select * from t anywhere, replace "*" with a specific field list, and do not return any fields that are not used.

21. Try to use table variables instead of temporary tables. If the table variable contains a large amount of data, note that the index is very limited (only the primary key index ).

22. Avoid frequent creation and deletion of temporary tables to reduce the consumption of system table resources. Temporary tables are not unavailable. Using them appropriately can make some routines more effective. For example, when you need to repeatedly reference a large table or a data set in a common table. However, it is best to use the export table for one-time events.

23. When creating a temporary table, if a large amount of data is inserted at one time, you can use select into instead of create table to avoid creating a large number of logs to increase the speed. If the data volume is small, to ease system table resources, create table first and then insert.

24. If a temporary table is used, you must explicitly delete all temporary tables at the end of the stored procedure. truncate the table first, and then drop the table, this prevents system tables from being locked for a long time.

25. Avoid using a cursor whenever possible because the efficiency of the cursor is poor. If the cursor operation has more than 10 thousand rows of data, you should consider rewriting.

26. before using the cursor-based or temporary table method, you should first find a set-based solution to solve the problem. The set-based method is generally more effective.

27. Like a temporary table, the cursor is not unavailable. Using a FAST_FORWARD cursor for a small dataset is usually better than other row-by-row processing methods, especially when several tables must be referenced to obtain the required data. A routine that includes "sum" in the result set is usually faster than a cursor. If this is allowed during development, you can try both the cursor-based method and the set-based method to see which method works better.

28. set nocount on at the beginning of all stored procedures and triggers, and set nocount off at the end. You do not need to send the DONE_IN_PROC message to the client after executing each statement of the stored procedure and trigger.

29. Avoid large transaction operations as much as possible to improve the system concurrency capability.

30. Avoid returning large data volumes to the client whenever possible. If the data volume is too large, consider whether the appropriate requirements are reasonable.

 

 

Refer:

[1] blog, blog

A blog, http://www.cnblogs.com/wy123/p/7003157.html? Utm_source = itdadao & utm_medium = referral

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.