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:
|
<<: Solve the problem of case sensitivity of Linux+Apache server URL
>>: Solution to 404 error when downloading apk file from IIS server
Physical Structure of an InnoDB Index All InnoDB ...
I recently bought a Tencent Cloud server and buil...
Table of contents 1. Location / Matching 2. Locat...
This article mainly introduces how to implement a...
To beautify the table, you can set different bord...
This article shares the specific code of jQuery t...
After I found that the previous article solved th...
Benefits of using xshell to connect to Linux We c...
illustrate DML (Data Manipulation Language) refer...
1.html <div class="loginbody"> &l...
Install Nginx First pull the centos image docker ...
Database stored procedures DROP PROCEDURE IF EXIS...
One of the most important features of a style she...
Preface This article records how I use docker-com...
The advantages of this solution are simplicity an...