Skip to content
Advertisement

How to find duplicate records in MySQL, but with a degree of variance?

Assume I have the following table structure and data:

I’d like to be able to find duplicate transactions where the description and amounts match, but the date would have some degree of variance +/- 3 days from each other.

Because the “Burger King” transactions are within three days of each other (2020-08-20 and 2020-08-23), they would be counted as duplicates, but the entry on 2020-09-13 would not be.

I have the following query so far, but the degree of variance piece is what’s stumping me.

Ideally, I’d love for the output to be something along the lines of:

Am I way off? Or is this even possible? Thanks in advance.

Advertisement

Answer

You can use exists:

If you are running MySQL 8.0, a count within a window date range is a reasonable alternative:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement