A brief analysis of the usage of USING and HAVING in MySQL

A brief analysis of the usage of USING and HAVING in MySQL

This article uses examples to illustrate the usage of USING and HAVING in MySQL. Share with you for your reference, the details are as follows:

USING

Used to give join conditions when joining tables (which can be understood as abbreviated form), such as

SELECT * FROM table1
JOIN table2 ON table1.id = table2.id

Using USING can be written as

SELECT * FROM table1
JOIN table2 USING (id)

HAVING

HAVING was introduced because WHERE cannot be used with statistical functions.

For example, the order table has the following fields:

id , date , price , customer

To find customers whose order total is less than 2000, you can write:

SELECT customer, SUM(price) FROM order
GROUP BY customer
HAVING SUM(price)<2000

Find the total order amount of orders exceeding 1500 for a specified customer:

SELECT customer,SUM(price) FROM order
WHERE customer = '…' OR customer = '…'
GROUP BY customer
HAVING SUM(price) > 1500

Readers who are interested in more MySQL-related content can check out the following topics: "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills".

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • A brief discussion on the usage of using in MySQL database
  • Detailed explanation of Mysql using usage examples

<<:  Solve the problem of case sensitivity of Linux+Apache server URL

>>:  Solution to 404 error when downloading apk file from IIS server

Recommend

Detailed steps and problem solving methods for installing MySQL 8.0.19 on Linux

I recently bought a Tencent Cloud server and buil...

Common rule priority issues of Nginx location

Table of contents 1. Location / Matching 2. Locat...

VUE+SpringBoot implements paging function

This article mainly introduces how to implement a...

jQuery implements the function of adding and deleting employee information

This article shares the specific code of jQuery t...

Solution to the root password login problem in MySQL 5.7

After I found that the previous article solved th...

Use xshell to connect to the Linux server

Benefits of using xshell to connect to Linux We c...

MySQL data operation-use of DML statements

illustrate DML (Data Manipulation Language) refer...

CSS border adds four corners implementation code

1.html <div class="loginbody"> &l...

Docker builds python Flask+ nginx+uwsgi container

Install Nginx First pull the centos image docker ...

CSS Tutorial: CSS Attribute Media Type

One of the most important features of a style she...

Detailed explanation of building MySQL master-slave environment with Docker

Preface This article records how I use docker-com...

MySQL data migration using MySQLdump command

The advantages of this solution are simplicity an...