/ Published in: SQL
Can be used when looking for values that are duplicates.
Expand |
Embed | Plain Text
SELECT city_name FROM areas GROUP BY city_name HAVING count(*) > 1
You need to login to post a comment.
BrentS on 04/03/12
1 person have marked this snippet as a favorite
Can be used when looking for values that are duplicates.
SELECT city_name FROM areas GROUP BY city_name HAVING count(*) > 1
You need to login to post a comment.