作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
select * from users ORDER BY FIELD(status, 'A', 'B', 'C', 'D') ASC;
这将根据用户的状态对所有用户进行排序,所有状态为“A”的用户将首先出现,然后是“B”,依此类推。 MongoDB 中的等价物是什么?
最佳答案
您需要 $project
MongoDB 术语中每个值的“权重”,这意味着 .aggregate()
方法:
db.users.aggregate([
{ "$project": {
"status": 1,
"a_field": 1,
"another_field": 1,
"pretty_much_every_field": 1,
"weight": {
"$cond": [
{ "$eq": [ "$status", "A" ] },
10,
{ "$cond": [
{ "$eq": [ "$status", "B" ] },
8,
{ "$cond": [
{ "$eq": [ "$status", "C" ] },
6,
{ "$cond": [
{ "$eq": [ "$status", "D" ] },
4,
0
]}
]}
]}
]
}
}},
{ "$sort": { "weight": -1 } }
])
ternary 的嵌套使用$cond
允许将“状态”的每个项目视为按给定参数顺序排列的“权重”值。
这又被馈送到 $sort
,其中投影值(“权重”)用于根据加权匹配对结果进行排序。
因此,通过这种方式,优先考虑“状态”匹配的顺序,即首先出现在排序结果中。
关于mongodb - 如何在 MongoDB 中执行基于值的 Order By?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33037261/
我是一名优秀的程序员,十分优秀!