在MongoDB中,哪个查询会绕过前5个客户并返回后10个客户?( )
db.customers.find({}, {skip: 5, limit: 10})
db.customers.find({}.page(5).take(10))
db.customers.find({}).skip(5).take(10)
db.customers.find({}).skip(5).limit(10)
在MongoDB中,哪个查询会绕过前5个客户并返回后10个客户?( )
db.customers.find({}, {skip: 5, limit: 10})
db.customers.find({}.page(5).take(10))
db.customers.find({}).skip(5).take(10)
db.customers.find({}).skip(5).limit(10)