2
我不完全確定如何調用它,但我想要做的是選擇兩個不同的值與極限;例如選擇5個「A」型文件和5個「B」型文件;像這樣:mongoDB「多重」選擇
db.students.find({class: 'A'}).limit(10);
db.students.find({class: 'B'}).limit(10);
這可以用只有一個查詢嗎? 在此先感謝。
我不完全確定如何調用它,但我想要做的是選擇兩個不同的值與極限;例如選擇5個「A」型文件和5個「B」型文件;像這樣:mongoDB「多重」選擇
db.students.find({class: 'A'}).limit(10);
db.students.find({class: 'B'}).limit(10);
這可以用只有一個查詢嗎? 在此先感謝。
你可以使用$in實現這一
db.students.find({class: {$in: ['A', 'B'] }}).limit(10)