Quote:
Originally Posted by NeutralizeR
Here's the query to find the duplicate helpfulpost votes:
Code:
SELECT postid,
COUNT(postid) AS NumOccurrences
FROM helpfulpost
GROUP BY postid
HAVING ( COUNT(postid) > 1 )
Since i deleted all of them, it doesn't return any results but i know it'll happen again 
|
Thanks! The system checks for dup votes... twice in face but I'll review again to see why some are making it through.