查询某一字段中的多个文本值,MongoDB
对于包含字段的文档:
{"_id" : 1, "name": "Sarah", "fruitEaten" : ["apple", "banana", "orange"]}
{ “_id”:2,“名字”:“史蒂夫”,“吃的水果”:“苹果”}
{“_id”:3,“名字”:“史黛西”, "fruitEaten" : ["apple", "orange"]}
如何查询谁吃了不止一种水果?
我一直在尝试 db.collection.find({"fruitEaten":{"$gt":1},{"name":1}})
For a document with fields:
{"_id" : 1, "name": "Sarah", "fruitEaten" : ["apple", "banana", "orange"]}
{"_id" : 2, "name": "Steve", "fruit Eaten" : "apple"}
{"_id" : 3, "name": "Stacey", "fruitEaten" : ["apple", "orange"]}
How can I query to get who ate more than one fruit eaten?
I have been trying db.collection.find({"fruitEaten":{"$gt":1},{"name":1}})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mongoplayground
mongoplayground