If your database table having duplicate records and you want to remove all duplicates, this query will help you to find out duplicate records in a table. You can check the records based on any specific field. SELECT * FROM mdl_user WHERE email IN ( SELECT email FROM mdl_user GROUP BY email HAVING count(email) > [...]
