- 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)
Which query bypasses the first 5 customers and returns the next 10?
June 25, 2021June 25, 2021
0 Comment