作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 mongo 上有一个名为“reports”的集合,它可以让客户发表评论并进行讨论。
以下是每个报告中“讨论”数组的样子:
"discussions" : [
{
"user_id" : "david",
"timestamp" : ISODate("2016-03-17T01:15:00Z"),
"comment" : "I was wondering, did anyone else find it interesting?",
"replies" : [
{
"user_id" : "kevin",
"timestamp" : ISODate("2016-03-17T01:15:00Z"),
"comment" : "Not really"
}
]
}
]
SELECT * FROM USERS WHERE id IN ('david', 'kevin')
array(1) {
["$or"]=>
array(1) {
[0]=>
array(1) {
["_id"]=>
string(4) "david"
},
[1]=>
array(1) {
["_id"]=>
string(4) "kevin"
}
}
}
最佳答案
您应该为此使用查询。在 mongo 语法中:
db.users.find({ "_id" : { $in : [ "david", "kevin" ] } })
关于php - 蒙戈 : $or query looking for multiple possible values in the same field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39062662/
我是一名优秀的程序员,十分优秀!