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:
|
<<: How to use firewall iptables strategy to forward ports on Linux servers
>>: Detailed example of using useState in react
The Drag and Drop API adds draggable elements to ...
The table structure is as follows: id varchar(32)...
What is a Viewport Mobile browsers place web page...
CocosCreator version: 2.3.4 Most games have layer...
After pressing Enter on the webpage, the form is a...
First download the latest MySQL 5.7.17 Community ...
Preface The following are the ways to implement L...
mycli MyCLI is a command line interface for MySQL...
Preface When we were writing the web page style a...
This article mainly introduces the breadcrumb fun...
Table of contents Skeleton screen use Vue archite...
Table of contents 1. Automatic installation using...
1. Packetdrill compilation and installation Sourc...
Table of contents 1. Foreign key constraints What...
Because the docker daemon needs to bind to the ho...