gpt4 book ai didi

javascript - Typeorm选择具有特定列的最大值

转载 作者:行者123 更新时间:2023-12-01 15:55:50 25 4
gpt4 key购买 nike

我想从名为 quotationVersion 的表的列中选择最大值来自表 quotation ,
代码

  getOneMaximumQuotationVersion() {
const query = this.createQueryBuilder("quotation");
query.select("MAX(quotation.quotationVersion)", "max");
// query.addSelect("MAX(quotation.quotationVersion)", "max");
return query.getOne();
}

最佳答案

如果要添加 等功能马克斯 , 总和 在选择子句中,你需要做 getRawOne() getRawMany() .这将为您提供原始响应:

getOneMaximumQuotationVersion() {
const query = this.createQueryBuilder("quotation");
query.select("MAX(quotation.quotationVersion)", "max");
// query.addSelect("MAX(quotation.quotationVersion)", "max");
return query.getRawOne();
}

关于javascript - Typeorm选择具有特定列的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54250232/

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