Hello,
I had used this mysql query to show the duplicated question :
SELECT title, COUNT(*) c FROM posts GROUP BY title HAVING c > 1;
the CMD returns 1K of deplicated question at least count 2 for each question
I need to hide/remove all those question programmatically using a question2answer script
to get the best SEO results
Regards.