PrefaceI was on a business trip at a customer site to deploy and debug software. One day, the customer suddenly came to me and said that there was an abnormality in the data produced on site. The most direct manifestation was that the same label appeared on multiple materials. They needed my cooperation to see how to troubleshoot the problem. analyzeThe customer put a pile of boxes with duplicate labels in front of me. I was so scared that I was afraid I was in big trouble. After a little thought, what we need to do now is to query the database for duplicate tags, that is, count a tag and determine the ones with count > 1. Emmm, grammatical error, I remember there was a "Having", let's try it instead Wow, there are more than 1,500 duplicate tags. Let's count the total number of questions and group them to see the percentage of duplicate tags. By the way, first throw these duplicate label data to the customer to trace the product (fortunately Navicat supports copying data) Data TotalThe result of the above query record is a temporary table. Based on this, sum() is used to sum There are a lot of duplicate records, which is a bit of a big problem. Repetition rateChange the query method of the previous query table, that is, group the count data again From the results, most of the problem data were repeated twice. The difference between where and havingWhere is a constraint statement that constrains the query conditions in the database before the query results are returned. That is, it takes effect before the results are returned, and aggregate functions cannot be used after where. Having is a filtering statement. The so-called filtering is performed after the results of the database query are returned, that is, it takes effect after the results are returned, and the aggregation function can be used after having. The so-called aggregate function is a function that calculates a set of values and returns a single value: sum---sum, count---count, max---maximum value, avg---average value, etc. SummarizeIn the query operation of MySQL, we usually use multi-table joint query, use the query results as the intermediate table for multiple queries, group the query results, perform statistical aggregation and other operations If function calculation or grouping is used in the query operation, the typical feature is to merge multiple records in the original table into one, and having is required to filter the results of these operations. In addition, use where to conditionally filter the table records. This is the end of this article about the troubleshooting and processing of duplicate MySQL records on site. For more information about the troubleshooting and processing of duplicate MySQL records, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: CSS HACK for IE6/IE7/IE8/IE9/FF (summary)
>>: Detailed explanation of CSS3 elastic expansion box
Table of contents Common payment methods in proje...
mysqladmin is an official mysql client program th...
Method 1: Use table attributes: header-cell-class...
MySQL download address: https://obs.cn-north-4.my...
Preface As a heavy user of front-end frameworks, ...
Vim is a text editor that we use very often in Li...
CI/CD Overview CI workflow design Git code versio...
Table of contents The problem here is: Solution 1...
Here I use samba (file sharing service) v4.9.1 + ...
Debug branch During the normal development of a p...
Vim is a powerful full-screen text editor and the...
Install the unzipped version of MySql database un...
This article example shares the specific code of ...
This article shares with you the installation tut...
This article uses examples to illustrate the simp...