gpt4 book ai didi

mysql组号使用多次并增加总成本

转载 作者:行者123 更新时间:2023-11-29 12:32:23 26 4
gpt4 key购买 nike

我需要帮助,我有日期、号码、持续时间和费用

我想看到一个号码被多次调用并且总费用加在一起的结果

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/

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