sql select where more than one record exists code example
Example: sql select where more than one record exists
SELECT *
FROM article
WHERE article_title IN (SELECT *
FROM (SELECT article_title
FROM article
GROUP BY article_title
HAVING COUNT(article_title) > 1)
AS a);