Database query optimization: subquery optimization

Database query optimization: subquery optimization

1. Case

Take all employees who are not the head of the company and group them by age!

select age as 'age', count(*) as 'number of people' from t_emp where id not in 
(select ceo from t_dept where ceo is not null) group by age; 

How to optimize?

①Solve the full table scan of the dept table and create an index for the ceo field:

At this time, query again:

② Further optimization, replace not in.

The above SQL can be replaced with:

select age as 'age',count(*) as 'number of people' from emp e left join dept d on e.id=d.ceo where d.id is null group by age; 

Conclusion: When judging the range, try not to use not in and not exists, use left join on xxx is null instead.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • MySQL database query optimization MySQL efficiency
  • Query optimization and paging algorithm for massive databases
  • Database query optimization (master-slave table design)
  • Detailed explanation of optimizing query statements in MySQL database
  • A collection of query optimization and paging algorithms for massive databases 1/2
  • Collection of query optimization and paging algorithms for massive databases 2/2
  • A practical record of a database query timeout optimization problem

<<:  How to use firewall iptables strategy to forward ports on Linux servers

>>:  Detailed example of using useState in react

Recommend

How to use HTML 5 drag and drop API in Vue

The Drag and Drop API adds draggable elements to ...

Two query methods when the MySQL query field type is json

The table structure is as follows: id varchar(32)...

HTML meta viewport attribute description

What is a Viewport Mobile browsers place web page...

How to use resident nodes for layer management in CocosCreator

CocosCreator version: 2.3.4 Most games have layer...

Mycli is a must-have tool for MySQL command line enthusiasts

mycli MyCLI is a command line interface for MySQL...

Tutorial on how to modify element.style inline styles

Preface When we were writing the web page style a...

Realize breadcrumb function based on vue-router's matched

This article mainly introduces the breadcrumb fun...

Example of implementing skeleton screen with Vue

Table of contents Skeleton screen use Vue archite...

How to install and use Ubuntu Docker

Table of contents 1. Automatic installation using...

Packetdrill's concise user guide

1. Packetdrill compilation and installation Sourc...

Briefly describe the use and description of MySQL primary key and foreign key

Table of contents 1. Foreign key constraints What...

Using docker command does not require sudo

Because the docker daemon needs to bind to the ho...