一对多关系:使用单个查询检索文档
回到经典的 mongodb 示例(帖子和用户):
帖子:
{title: "Greetings", body:"Hello world", userId:12345}
用户:
{_id:12345, name:"John Smith", email:[email protected]"}
如何
{title: "Greetings", body:"Hello world", <username>:"John Smith"}
通过单个查询获取帖子?
Returning to classic mongodb example (posts and users):
Posts:
{title: "Greetings", body:"Hello world", userId:12345}
Users:
{_id:12345, name:"John Smith", email:[email protected]"}
How to get post
{title: "Greetings", body:"Hello world", <username>:"John Smith"}
with a sigle query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MongoDB 不是 RDBMS - 所以没有连接 - 要么使用两个查询,要么使用嵌入,要么查看“数据库引用”。
MongoDB is not an RDBMS - so NO JOINS - either you use two queries or you use embedding or you look at "database references".