Preface Today, after synchronizing the order data, a colleague chose to use the LIMIT and SUM() functions to calculate the total amount of the current page to compare the total amount of a specific order with the other party because there was a difference between the total order amount and the total amount of the data source. However, he found that the calculated amount was not the total amount of the paged orders, but the total amount of all orders. The database version is MySQL 5.7. Below we will use an example to review the problem encountered. Problem review This review will use a very simple order table as an example. Data preparation The order table creation statement is as follows (I am lazy here and use the auto-increment ID. It is not recommended to use the auto-increment ID as the order ID in actual development) CREATE TABLE `order` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Order ID', `amount` decimal(10,2) NOT NULL COMMENT 'Order amount', PRIMARY KEY (`id`) )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; The SQL to insert an amount of 100 is as follows (execute 10 times) INSERT INTO `order`(`amount`) VALUES (100); So the total amount is 10*100=1000. Problem SQL Use limit to query the data in pages, and use the sum() function to calculate the total amount of the current page SELECT SUM(`amount`) FROM `order` ORDER BY `id` LIMIT 5; As mentioned above, the expected result is 5*100=500, but the actual result is 1000.00 (the decimal point is due to the data type). Troubleshooting In fact, if you have a certain understanding of the execution order of SELECT statements, you can quickly determine why the returned result is the total amount of all orders? Next, I will analyze the problem based on the execution sequence of the problematic SQL:
Supplementary content Here is the execution order of SELECT statement
Solution When you need to count paging data (in addition to the SUM() function, the common COUNT(), AVG(), MAX(), and MIN() functions also have this problem), you can choose to use a subquery to handle it (PS: memory calculation is not considered here, and the purpose is to use the database to solve this problem). The solution to the above problem is as follows: SELECT SUM(o.amount) FROM (SELECT `amount` FROM `order` ORDER BY `id` LIMIT 5) AS o; The return value of the operation is 500.00. 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. You may also be interested in:
|
<<: How to use Linux to calculate the disk space occupied by timed files
>>: A simple way to implement Vue's drag screenshot function
Table of contents 1. A simplest server-side examp...
Modern browsers no longer allow JavaScript to be ...
To understand load balancing, you must first unde...
Because colleagues in the company need Nginx log ...
I have previously introduced to you the configura...
1. HTML Overview 1.HTML: Hypertext Markup Languag...
This article introduces the implementation code o...
The so-called sliding door technology means that ...
Preface Reduce is one of the new conventional arr...
HTML implements 2-column layout, with fixed width...
Chinese Tutorial https://www.ncnynl.com/category/...
When developing applications that use a database,...
Regarding some MySQL specifications, some compani...
Table of contents Preface: 1. Introduction to rol...
The installation of mysql-5.7.17 is introduced be...