This question is pretty simple I for some reason cant get the proper result to display only the duplicate records
Table : Paypal_ipn_orders id
Try this query:
SELECT id, COUNT( payer_email ) `tot` FROM paypal_ipn_orders GROUP BY id HAVING `tot` >1
Does it help?