作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助,我有日期、号码、持续时间和费用
我想看到一个号码被多次调用并且总费用加在一起的结果
date number duration cost
17/11/2014 10:32:19 am 0800 00:00:00 0.00
17/11/2014 11:06:47 am 071991 00:02:42 3.54
13/11/2014 02:47:40 pm 060302874 00:00:00 0.00
6/11/2014 11:53:28 am 0100601555 00:00:47 0.50
24/11/2014 12:06:27 pm 0113151407 00:00:46 0.50
19/11/2014 08:37:34 am 0113941905 00:00:47 0.50
24/11/2014 02:48:43 pm 0113941905 00:00:29 0.50
19/11/2014 08:39:16 am 0113949182 00:01:03 0.50
24/11/2014 02:41:57 pm 0113949182 00:00:36 0.50
24/11/2014 12:08:09 pm 0113949182 00:00:43 0.50
24/11/2014 02:50:29 pm 0114922660 00:03:26 1.72
最佳答案
简单的按数字分组就可以了
select number,
sum(cost) total_cost,
count(*) times_dialed,
min(date) earliest_date,
max(date) latest_date
from mytable
group by number
having count(*) > 1
关于mysql组号使用多次并增加总成本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27295129/
我在模型 mrp.BOM 结构中创建了一个自定义字段,如下所示,用于计算产品的 BOM 总成本:- Field Name:- x_bom_total Field Label:- Total BOM F
我是一名优秀的程序员,十分优秀!