Find all duplicate question titles in the database.
Q&A for programmers
-- Duplicate Titles -- Find all duplicate question titles in the database. select Title,count(*) from Posts where ParentId is null group by Title having count(*) > 1 order by count(*) desc
Error: looks like you typed in the wrong words - try again