首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >MySQL运行总计仅处理硬编码的整数

MySQL运行总计仅处理硬编码的整数
EN

Stack Overflow用户
提问于 2019-06-22 23:54:45
回答 1查看 17关注 0票数 -1

我有下面的SQL,它不是我想的那样工作。

SET @runtot:=0;
select 
q1.week,
(@runtot := @runtot + cast(q1.flying_hours as SIGNED)) as flying_hours,
q1.flying_hours as weekly_hours
from
(
select 
date_format(d.date,"%x%v") as week,
cast(ceil(sum(fh.engine_minutes)/60) as SIGNED) as flying_hours
from dates d 
left join flyinghours fh on date_format(fh.flight_start, "%x%v") = date_format(d.date,"%x%v")
where d.`date` >= "2019-01-01"
and d.date <= date_add(now(), interval 1 month)
group by date_format(d.date,"%x%v")
) q1
limit 20

结果是

"week"  "flying_hours"  "weekly_hours"
"201901"    \N  \N
"201902"    \N  \N
"201903"    \N  \N
"201904"    \N  \N
"201905"    \N  "20"
"201906"    \N  "9"
"201907"    \N  \N
"201908"    \N  \N
"201909"    \N  \N
"201910"    \N  \N
"201911"    \N  \N
"201912"    \N  \N
"201913"    \N  \N
"201914"    \N  \N
"201915"    \N  \N
"201916"    \N  \N
"201917"    \N  "7"
"201918"    \N  "39"
"201919"    \N  "93"
"201920"    \N  "9"

但是,我将flying_hours替换为子查询中的硬编码整数,它可以工作。

SET @runtot:=0;
select 
q1.week,
(@runtot := @runtot + cast(q1.flying_hours as SIGNED)) as flying_hours,
q1.flying_hours as weekly_hours
from
(
select 
date_format(d.date,"%x%v") as week,
5 as flying_hours
from dates d 
left join flyinghours fh on date_format(fh.flight_start, "%x%v") = date_format(d.date,"%x%v")
where d.`date` >= "2019-01-01"
and d.date <= date_add(now(), interval 1 month)
group by date_format(d.date,"%x%v")
) q1
limit 20
"week"  "flying_hours"  "weekly_hours"
"201901"    "5" "5"
"201902"    "10"    "5"
"201903"    "15"    "5"
"201904"    "20"    "5"
"201905"    "25"    "5"
"201906"    "30"    "5"
"201907"    "35"    "5"
"201908"    "40"    "5"
"201909"    "45"    "5"
"201910"    "50"    "5"
"201911"    "55"    "5"
"201912"    "60"    "5"
"201913"    "65"    "5"
"201914"    "70"    "5"
"201915"    "75"    "5"
"201916"    "80"    "5"
"201917"    "85"    "5"
"201918"    "90"    "5"
"201919"    "95"    "5"
"201920"    "100"   "5"
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56716926

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档