For what would be this query in SQL (to find duplicates):

SELECT userId, name FROM col GROUP BY userId, name HAVING COUNT(*)>1

I performed this simple query in MongoDB:

res = db.col.group({key:{userId:true,name:true}, 
                     reduce: function(obj,prev) {prev.count++;}, 
                     initial: {count:0}})

I've added a simple Javascript loop to go over the result set, and performed a filter to find all the fields with a count > 1 there, like so:

for (i in res) {if (res[i].count>1) printjson(res[i])};

Is there a better way to do this other than using javascript code in the client? If this is the best/simplest way, say that it is, and this question will help someone :)

link|improve this question
1  
check out the similar question stackoverflow.com/questions/4224773/… – RameshVel Apr 5 '11 at 10:24
It's similar, but not the same. I'm using a group function, not the map-reduce functionality of MongoDB. – shlomoid Apr 5 '11 at 10:27
But this site which is linked from that answer helps, with a simple example: csanz.posterous.com/look-for-duplicates-using-mongodb-mapreduce – shlomoid Apr 5 '11 at 10:33
feedback

1 Answer

up vote 2 down vote accepted

This may help:

http://nosql.mypopescu.com/post/392418792/translate-sql-to-mongodb-mapreduce

link|improve this answer
Excellent PDF, thanks! – shlomoid Apr 5 '11 at 12:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.