gpt4 book ai didi

mongodb - 如何在 MongoDB 中执行基于值的 Order By?

转载 作者:IT老高 更新时间:2023-10-28 13:28:06 25 4
gpt4 key购买 nike

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com