This question already has an answer here:
- how to join two tables in mongodb 3 answers
I have 2 collections which I would like to join together using the Phalcon PHP framework.
I would know how to do this in MySQL, however I am wondering if it is possible when using MongoDB, a non-relational database.
Assuming my collections are:
Robots
- _id
- name
- age
Robot Parts
- _id
- robot_id
- name
- quantity
</div>