I have an "updates" table that can contain duplicate descriptions, and I would like to return the duplicates along with their count, so I created this query:
SELECT description, count(description) AS count
FROM updates INNER JOIN participations ON participations.update_id = updates.id
INNER JOIN customer ON customer.id = participations.customer_id
INNER JOIN garages ON garages.id = customer.garage_id
WHERE (updates.created_at >= DATE_SUB(CURDATE(), INTERVAL 6 MONTH))
AND garages.`id` = 1
GROUP BY description
ORDER BY count desc
LIMIT 10
The counts returned were not what I was expecting. I believe the reason why is because many customers can share an update, so I am getting duplicates because of the actual duplicates in the table, and because the same update record is being returned multiple times. How can I fix the query so that it only counts the actual duplicate description fields in the update table. Thanks