×
Community Blog 8 SQL Pitfalls: Are You Making These Mistakes?

8 SQL Pitfalls: Are You Making These Mistakes?

This article enlists eight most dire SQL mistakes that often hamper database performance and suggests how to avoid them.

Programming in SQL is an exciting as well as a challenging task. Even experienced SQL programmers, developers and database administrators (DBAs) sometimes face challenges with the SQL language. This article aims to help users identify such critical mistakes and learn to overcome them.

Let's deep dive into the eight worst SQL mistakes in the following sections.

1) LIMIT Statements

Paged queries are one of the most common scenarios, but also an extremely common problem. For example, for the following simple statement, DBAs often add composite indexes for the type, name, and create_time fields. Such conditional sorting allows effective use of indexes and quickly improves performance. This is a common way for more than 90% of DBAs to solve such problem. However, when the LIMIT clause is changed to "LIMIT 1000000,10", programmers often complain that it takes too long to retrieve merely 10 records. It happens because the database does not know where the 1,000,000th record starts. Therefore, even when indexes are available, it must calculate from scratch. This performance problem occurs usually due to the laziness of programmers. In scenarios such as frontend data browsing and paging or the batch export of big data, the maximum value on the previous page can be used as a query condition. Rewrite the SQL code as follows:

1

With the new design, the query time is basically fixed and does not change as data volumes increase.

2) Implicit Conversion

It's another common error that occurs when query variables do not match the field definition types in SQL statements. The following statement is one such example:

2

The bpn field is defined as varchar(20), and the MySQL policy is to convert the string into a number before comparison. When the function acts on table fields, the index becomes invalid. The preceding problem may be caused by parameters automatically completed by the application framework, rather than due to a conscious mistake on the part of the programmer. At present, many application frameworks are complicated. Although they are very convenient to use, you must also be aware of the potential problems they may cause.

3) Update and Delete Join

Although the materialized feature was introduced in MySQL 5.6, note that it is only optimized for query statements at present. Manually rewrite UPDATE or DELETE statements into JOIN statements.

For example, in the following UPDATE statement, MySQL actually runs a circular or nested subquery (DEPENDENT SUBQUERY), and the execution time is relatively long.

3

Consider the following execution plan.

4

After rewriting the statement as a JOIN statement, the subquery selection mode changes from DEPENDENT SUBQUERY to DERIVED, which reduces the time required from 7 seconds to 2 milliseconds.

5

Refer to the following simplified execution plan.

6

4) Mixed Sorting

MySQL cannot use indexes for mixed sorting. However, in some scenarios, users still have access to special methods for improving performance.

7

The execution plan is presented as a full table scan.

Since is_reply only has the states 0 and 1, after rewriting it by following the method, the execution time is reduced from 1.58 seconds to 2 milliseconds.

8

5) EXISTS Statements

MySQL still uses nested subqueries to process EXISTS clauses. For example, consider the SQL statement below:

9

Refer to the following execution plan.

10

Change the EXISTS statement to a JOIN statement to avoid nested subqueries and reduce the execution time from 1.93 seconds to 1 millisecond.

11

Consider the new execution plan below.

12

6) Conditional Pushdown

An external query condition cannot be pushed down to a complex view or subquery in the following situations:

  • Aggregate subqueries
  • Subqueries with LIMIT
  • UNION or UNION ALL subqueries
  • Subqueries in the output field

From the execution plan for the following statement, note that the condition acts after the aggregate subquery.

13

14

Make sure that the semantic query conditions is directly pushed down and then rewritten as follows:

15

Refer to the following updated execution plan.

16

7) Narrow Down the Scope in Advance

Start with the initial SQL statement as shown below.

17

The quantity is 900,000, and the execution takes 12 seconds.

18

Since the last WHERE condition and sorting are performed on the leftmost primary table, first narrow down the data volume for my_order sorting before performing the left join. After the SQL statement is rewritten as follows, the execution time is reduced to about 1 ms.

19

Review the execution plan. After the subquery is materialized, select_type=DERIVED participates in the JOIN operation. Although the estimated number of rows to be scanned remains 900,000, the actual execution time is reduced after the index and the LIMIT clause are applied.

20

8) Pushdown of the Intermediate ResultSet

Let's take a look at the following initially optimized example (the query condition first acts on the primary table in the left join):

21

Are there any other problems with this statement? It is easy to see that subquery c is a full table aggregate query. Therefore, when the number of tables is particularly large, the performance of the entire statement drops.

In fact, for subquery c, the final result set of the left join is only concerned with the data that matches the primary table resourceid. Therefore, rewrite the statement as follows to reduce the execution time from 2 seconds to 2 milliseconds.

22

However, subquery appears in the SQL statement multiple times. This method not only incurs additional overhead but also makes the entire statement more complicated. Use a WITH statement to rewrite the statement again.

23

Summary

The database compiler generates an execution plan, which determines the actual execution method of SQL statements. However, the compiler only tries its best to provide services, and no database compiler is perfect.

In most of the aforementioned scenarios, performance problems also occur in other databases. You must understand the features of the database compiler to avoid its shortcomings and write high-performance SQL statements.

When designing data models and writing SQL statements, incorporate your algorithm ideas and awareness. For example, use WITH clauses when writing complex SQL statements, whenever possible. Simple and clear SQL statements also reduce the load on the database.

0 0 0
Share on

ApsaraDB

376 posts | 57 followers

You may also like

Comments