I have this query
SELECT id, timeOrdered, order_desc, firstname, lastname
FROM `db`.`myTable`
WHERE `myTable`.`customer_number` IN (100, 101, 102, 103, 104, 105)
I am trying to find which are duplicate records. If the timeOrdered, order_desc, firstname, lastname are same then its dupe.
What would be the query for that
Thanks
To see what values have duplicates:
To see the entire record associated with those duplicates: