博客
关于我
sqlalchemy之分组求和排序复杂查询总结【包括错误如何调试】
阅读量:666 次
发布时间:2019-03-15

本文共 626 字,大约阅读时间需要 2 分钟。

正确案例分析:分组排序后最终显示price和amount字段求和的结果

在某些数据分析场景中,用户可能会希望对数据库中的数据进行分组统计和排序操作。以下是一个典型的SQLAlchemy使用案例,展示了如何在分组后对price字段进行排序,并对amount字段进行求和操作。

具体实现方法如下:

from sqlalchemy import funcfrom app.models.base import db# 分组排序后最终显示price和amount字段求和的结果buy_order = db.session.query(    BuyOrder.price,    func.sum(BuyOrder.amount)).filter_by(order_status=1).group_by(BuyOrder.price).order_by(BuyOrder.price.desc()).all()

在这个查询中:

1. 首先使用`group_by(BuyOrder.price)`方法对price字段进行分组操作2. 之后使用`order_by(BuyOrder.price.desc())`对price字段按降序排序3. 最后使用`func.sum(BuyOrder.amount)`对amount字段进行求和操作4. 通过`all()`方法获取最终结果

这种方法非常适合需要对多个数据字段进行分组统计和排序的场景,能够有效展示数据的统计结果。

转载地址:http://zommz.baihongyu.com/

你可能感兴趣的文章
Nmap扫描教程之Nmap基础知识
查看>>
nmap指纹识别要点以及又快又准之方法
查看>>
Nmap渗透测试指南之指纹识别与探测、伺机而动
查看>>
Nmap端口扫描工具Windows安装和命令大全(非常详细)零基础入门到精通,收藏这篇就够了
查看>>
NMAP网络扫描工具的安装与使用
查看>>
NMF(非负矩阵分解)
查看>>
nmon_x86_64_centos7工具如何使用
查看>>
NN&DL4.1 Deep L-layer neural network简介
查看>>
NN&DL4.3 Getting your matrix dimensions right
查看>>
NN&DL4.7 Parameters vs Hyperparameters
查看>>
NN&DL4.8 What does this have to do with the brain?
查看>>
nnU-Net 终极指南
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
NO 157 去掉禅道访问地址中的zentao
查看>>
no available service ‘default‘ found, please make sure registry config corre seata
查看>>
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
查看>>
no connection could be made because the target machine actively refused it.问题解决
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>