First, let me give you an example (if you don’t want to read it, just read the summary below): order_type: order type open_id: user unique identifier SELECT date(create_time) AS 'today's date', sum(real_price) AS 'Total revenue for the day', The if judgment condition is used in the sum function: sum( IF (order_type = 0, real_price, 0) ) AS 'Pay income on the same day', sum( IF (order_type = 1, real_price, 0) ) AS 'Reward income for the day', } count(DISTINCT open_id) AS 'Total number of paying customers', The count function uses the if condition: count( DISTINCT open_id, IF (order_type = 0, TRUE, NULL) ) AS 'Number of payees', count( DISTINCT open_id, IF (order_type = 1, TRUE, NULL) ) AS 'Number of Rewards', } count(id) AS 'Total number of paid orders', The count function uses the if condition: count( DISTINCT id, IF (order_type = 0, TRUE, NULL) ) AS 'Number of payment orders', count( DISTINCT id, IF (order_type = 1, TRUE, NULL) ) AS 'Number of reward orders' } FROM orders WHERE 'real_price' != 1 AND 'status' != 0 GROUP BY DATE(create_time) Query results: In order to distinguish the data statistics of reward orders and payment orders, make the data clearer. summary: The format of if judgment condition in sum function is: sum(if(condition, column value, 0))
1. Single conditional judgment format, sum(if(conditional field name = value, field name to be summed, 0)) 2. Multiple condition judgment format, sum(if(condition field name>value AND condition field name>value AND condition field name=value,1,0))
3. Common case when format, sum(case when condition field name in (smaller range value, larger range value) then [field name to calculate sum] else 0 end) The if conditional format used in the count function is: 1. Count the total number, count(if(condition field name = value, true, null)) 2. Count the total number of duplicate values, count(DISTINCT field name to be counted, if(condition field name = value, true, null)) Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: How to check PCIe version and speed in Linux
>>: Detailed explanation of NodeJS modularity
Nowadays, mobile devices are becoming more and mo...
Data URI Data URI is a scheme defined by RFC 2397...
When developing a mobile page recently, I encount...
1. Key points for early planning of VMware vSpher...
I joined a new company these two days. The compan...
Table of contents Preface Communication between t...
Table of contents Parsing .vue files Extract docu...
Use anti-shake to make DIV disappear when the mou...
I have roughly listed some values to stimulate ...
Today, because I wanted to install MySQL, I went ...
Based on Vue and native javascript encapsulation,...
Table of contents Preface 1. Prepare new partitio...
Table of contents Preface Initialize the project ...
The results are different in Windows and Linux en...
Table of contents Dockerfile pom.xml Jenkins Conf...