Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I perform the SQL Join equivalent in MongoDB?

For example say you have two collections (users and comments) and I want to pull all the comments with pid=444 along with the user info for each.

comments
  { uid:12345, pid:444, comment="blah" }
  { uid:12345, pid:888, comment="asdf" }
  { uid:99999, pid:444, comment="qwer" }

users
  { uid:12345, name:"john" }
  { uid:99999, name:"mia"  }

Is there a way to pull all the comments with a certain field (eg. ...find({pid:444}) ) and the user information associated with each comment in one go?

At the moment, I am first getting the comments which match my criteria, then figuring out all the uid's in that result set, getting the user objects, and merging them with the comment's results. Seems like I am doing it wrong.

share|improve this question

6 Answers

This page on the official mongodb site addresses exactly this question:

http://www.mongodb.org/display/DOCS/MongoDB+Data+Modeling+and+Rails

"When we display our list of stories, we'll need to show the name of the user who posted the story. If we were using a relational database, we could perform a join on users and stores, and get all our objects in a single query. But MongoDB does not support joins and so, at times, requires bit of denormalization. Here, this means caching the 'username' attribute. [...] Relational purists may be feeling uneasy already, as if we were violating some universal law. [...]"

share|improve this answer

You have to do it the way you described. MongoDB is a non-relational database and doesn't support joins.

share|improve this answer
3  
Seems wrong performance wise coming from a sql server background, but its maybe not that bad with a document db? – terjetyl Jul 15 '10 at 18:20
2  
from a sql server background as well, I would appreciate MongoDB taking a 'result set' (with selected returned fields) as input for a new query in one go, much like nested queries in SQL – Stijn Sanders Nov 26 '10 at 23:17

There is a specification that a lot of drivers support that's called DBRef.

DBRef is a more formal specification for creating references between documents. DBRefs (generally) include a collection name as well as an oject id. Most developers only use DBRefs if the collection can change from one document to the next. If your referenced collection will always be the same, the manual references outlined above are more efficient.

Source

share|improve this answer

Here's an example of a join between Actors and Movies collections:

http://cookbook.mongodb.org/patterns/pivot/

It makes use of .mapReduce() method

share|improve this answer
2  
-1, This is NOT joining data from two collections. It is using data from a single collection (actors) pivoting data around. So that things that were keys are now values and values are now keys... very different than a JOIN. – Evan Teran May 22 '12 at 17:44
3  
This exactly what you have to do, MongoDB is not relational but document oriented. MapReduce allows to play with data with big performance (you can use cluster etc....) but even for simple cases, its very useful ! – Thomas Decaux Jun 17 '12 at 19:16
Yes Thomas, you're right. – Stephane Paquet Jun 20 '12 at 18:23

playORM can do it for you using S-SQL(Scalable SQL) which just adds partitioning such that you can do joins within partitions.

share|improve this answer

You can run SQL queries including join on MongoDB with this wrapper from Postgres.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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