作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为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/
我有基于选项卡栏的应用程序。当我放入 plist UIBackgroundModes 时(我的应用程序应该支持 voip),GUI 不会加载。它在启动屏幕上很糟糕,并且不会加载第一个选项卡 View
我是一名优秀的程序员,十分优秀!