Mongodb find docs without associated doc -
i have mongo database users collection , profile collection. need find users not have profile. docs associated email address.
db.user.find().foreach(function(o) { if(db.profile.find( { email: o.email } ).length() == 0) { print(o.email); }; })
Comments
Post a Comment