Posted By


BrentS on 04/03/12

Tagged


Statistics


Viewed 438 times
Favorited by 0 user(s)

sql_FindingDupValues


/ Published in: SQL
Save to your folder(s)

Can be used when looking for values that are duplicates.


Copy this code and paste it in your HTML
  1. SELECT city_name
  2. FROM areas
  3. GROUP BY city_name
  4. HAVING COUNT(*) > 1

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.