make:"AC"
model:"ACE"
generation:"1 generation"
year_begin:1993
year_end:2000
serie:"Cabriolet"

我想使用MongoDB查询来获取汽车,如果从年初到年末的车型年份我试图编写它,但没有成功这是我的查询:
> {'year_begin':{'$gte':1994},'year_end':{'$lte':1994}}

最佳答案

尝试使用$and,查询应如下所示:

db.collection.find({$and:[{year_begin:{$lte: 1994 }}, {year_end:{$gte:1994}}]} )

关于mongodb - 获取Mongo中列之间的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53479839/

10-12 23:36