gpt4 book ai didi

sql - 被 SQL Server 中的一个查询困住

转载 作者:行者123 更新时间:2023-12-02 19:36:35 24 4
gpt4 key购买 nike

我有一个名为calci的表。以下是示例数据

CREATE TABLE calci
(RN int, FREQ int, price int)
;

INSERT INTO calci
(RN, FREQ, price)
VALUES
(1, 1, 3),
(2, 2, 4),
(3, 3, 5),
(4, 4, 6),
(5, 5, 7),
(6, 6, 8),
(7, 1, 5),
(8, 2, 6),
(9, 3, 9),
(10, 4, 7),
(11, 5, 5),
(12, 6, 1),
(13, 1, 3)
;

根据 freq (1-6) 的总和,我只需要 3 条记录

结果应该是这样的

price
33 -----sum of first 6 records
33 -----sum of next six records
3 -----sum of last six record i.e last record

最佳答案

请检查以下查询是否可以解决上述问题

select sum(price) from calci  group by (rn- freq)

关于sql - 被 SQL Server 中的一个查询困住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37523330/

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