我正在使用skip limit and aggregate,但它不工作。
skip limit and aggregate
db.collation .skip(400) .limit(100) .aggregate([{$sample: {size: 50}}])
正确的做法是什么?
hfyxw5xn1#
尝试将其作为聚合管道的一部分:演示-https://mongoplayground.net/p/LhTNE85OZVS
db.collection.aggregate([ { $skip: 400 }, { $limit: 100 }, { $sample: { size: 50 } } ])
1条答案
按热度按时间hfyxw5xn1#
尝试将其作为聚合管道的一部分:
演示-https://mongoplayground.net/p/LhTNE85OZVS