Extract Transform & Load
8/6/12
Finding duplicates SQL
SELECT item_id,
COUNT(item_id) AS NumOccurrences
FROM item
GROUP BY item_id
HAVING ( COUNT(item_id) > 1 )
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment