Hi All
I know that this is not related Liferay but i came across this useful thing during my development where you can find duplicate record from table and can delete if you need.
SELECT tablename.name FROM tablenameINNER JOIN (SELECT name FROM tablenameGROUP BY name HAVING count(name) > 1) dup_record ON tablename.name = dup_record.name...