1. What is a subquery?When one query is part of another query, we call the inner query a subquery and the outer query the main query. 2. Where can subqueries appear?select ..(select). from ..(select). where ..(select). As can be seen from the above, subqueries often appear in three places: select can be followed by a subquery; from can be followed by a subquery; where can be followed by a subquery; we refer to them here as: 3. Where subqueryExercise: Find information about employees who earn above the average salary. 4. Use a subquery after from. (Too important)Exercise 1: Find the salary grade for the average salary in each department. The results are as follows: Exercise 2: Find the average salary level for each employee The results are as follows: Note: There are few scenarios where subqueries are used after select, so they will not be described here. If you feel it is necessary, you can go and check it out yourself. The above is the detailed content of the MySQL tutorial subquery example. For more information about MySQL subqueries, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Simple tips to increase web page loading speed
>>: HTML simple shopping quantity applet
If you are using the latest Ubuntu Server version...
GitHub has all kinds of magic tools. Today I foun...
MySQL's CAST() and CONVERT() functions can be...
View mysqlbinlog version mysqlbinlog -V [--versio...
In Ubuntu, you often encounter the situation wher...
Table of contents 1. Vue life cycle 2. Hook funct...
This article discusses the difficulties and ideas...
In MySQL, how do you view the permissions a user ...
Table of contents Take todolist as an example The...
MySQL implements Oracle-like sequences Oracle gen...
Table of contents 1. The role of index 2. Creatin...
Generally speaking, in order to get more complete...
For example: <link rel="stylesheet" h...
The following example code introduces the princip...
Main library configuration 1. Configure mysql vim...