MySQL Tutorial: Subquery Example Detailed Explanation

MySQL Tutorial: Subquery Example Detailed Explanation

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: select子查詢, from子查詢, where子查詢.

3. Where subquery

insert image description here

Exercise: Find information about employees who earn above the average salary.

insert image description here

4. Use a subquery after from. (Too important)

insert image description here

Exercise 1: Find the salary grade for the average salary in each department.

insert image description here

The results are as follows:

insert image description here

Exercise 2: Find the average salary level for each employee

insert image description here

The results are as follows:

insert image description here

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:
  • Mysql multi-layer subquery example code (Favorites case)
  • In-depth analysis of MySQL subquery principle
  • Solve the use of Mysql multi-row subquery and null value problems
  • mysql subquery and join table details
  • Problems with join queries and subqueries in MySQL
  • Basic use of subqueries in MySQL
  • MySQL subqueries and grouped queries
  • Detailed example of MySQL subquery
  • MySQL detailed analysis of the use of subqueries

<<:  Simple tips to increase web page loading speed

>>:  HTML simple shopping quantity applet

Recommend

How to disable ads in the terminal welcome message in Ubuntu Server

If you are using the latest Ubuntu Server version...

A brief introduction to the command line tool mycli for operating MySQL database

GitHub has all kinds of magic tools. Today I foun...

How to convert mysql bin-log log files to sql files

View mysqlbinlog version mysqlbinlog -V [--versio...

Ubuntu 18.04 disable/enable touchpad via command

In Ubuntu, you often encounter the situation wher...

Implementation of CSS linear gradient concave rectangle transition effect

This article discusses the difficulties and ideas...

React implements the addition, deletion, modification and query of todolist

Table of contents Take todolist as an example The...

MySQL implements a solution similar to Oracle sequence

MySQL implements Oracle-like sequences Oracle gen...

Related operations of adding and deleting indexes in mysql

Table of contents 1. The role of index 2. Creatin...

Summary of four situations of joint query between two tables in Mysql

Generally speaking, in order to get more complete...

Tomcat parses XML and creates objects through reflection

The following example code introduces the princip...

MySQL master-slave replication configuration process

Main library configuration 1. Configure mysql vim...