gpt4 book ai didi

node.js - 在 Mongoose 中获得最大值

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

如何在 Mongoose 查询中获取最大值。在 SQL 中很容易

SELECT MAX(LAST_MOD) FROM table1
Where field1=1

我想在 mongoose(node.js) 中等效于上述 SQL 代码

最佳答案

我无法得到其他答案。也许我正在使用更新版本的 Mongoose (mongoose@3.0.1)。

这对我有用:

Table1.findOne()
.where({field1: 1})
.sort('-LAST_MOD')
.exec(function(err, doc)
{
var max = doc.LAST_MOD;
// ...
}
);

关于node.js - 在 Mongoose 中获得最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10572592/

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