Create GroupGrouping is established in the GROUP BY clause of the SELECT statement. example: SELECT vend_id, COUNT(*) AS num_prods FROM products GROUP BY vend_id; GROUP BY
Filter GroupsIf one wants to list all orthopedics departments that have at least two orders, the data must be filtered based on the complete grouping rather than individual rows. You can use HAVING SELECT cust_id, COUNT(*) AS orders FROM orders GROUP BY cust_id HAVING COUNT(*) >= 2; The difference between HAVING and WHERE is that WHERE filters before data grouping, while HAVING filters after grouping. Of course, both can appear in the same statement. List suppliers with 2 or more products with a price of 10 or more SELECT vend_id, COUNT(*) AS num_prods FROM products WHERE prod_price >= 10 GROUP BY vend_id HAVING COUNT(*) >= 2; List suppliers with two top products SELECT vend_id, COUNT(*) AS num_prods FROM products GROUP BY vend_id HAVING COUNT(*) >= 2; Grouping and Sorting
Retrieve the order number and total order price of orders with a total order price greater than or equal to 50 SELECT order_num, SUM(quantity*item) AS ordertotal FROM orderitems GROUP BY order_num HAVING SUM(quantity*item_price) >= 50; If you sort the output by total order price SELECT order_num, SUM(quantity * item_price) AS ordertotal FROM orderitems GROUP BY order_num HAVING SUM(quantity * item_price) >= 50 ORDER BY ordertotal; Order of SELECT clauses
The above is a detailed explanation of MySQL data grouping. For more information about MySQL data grouping, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Analysis of the usage of Xmeter API interface testing tool
>>: Markup Language - Image Replacement
Intro Introduces and collects some simple and pra...
Yesterday, I wrote a blog about the circular prog...
1. MYSQL installation directory Copy the code as ...
Table of contents 1. What is the life cycle 2. Lo...
MySQL8.0.12 installation tutorial, share with eve...
Use the browser (webdriver)-based selenium techno...
User namespace is a new namespace added in Linux ...
The new official website is online, but the exper...
Table of contents MySQL Truncate usage 1. Truncat...
Three knowledge points: 1. CSS descendant selecto...
CEP - Complex Event Processing. The payment has n...
watch : listen for data changes (change events of...
Table of contents 1. Basic Use 2. Image quantity ...
Table of contents Preface Implementation ideas Ef...
Introduction In a production environment, in orde...