- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
电台
id | name | region_id
1 | sation1 | 1
2 | sation2 | 1
3 | sation3 | 2
4 | sation4 | 2
expenditure_heads
id | name
1 | exp1
2 | exp2
3 | exp3
4 | exp4
5 | exp5
expense_details
id | expenditure_head_id | station_id | year | month | expense
1 | 1 | 1 | 2015 | 1 | 300
2 | 2 | 1 | 2015 | 1 | 250
3 | 3 | 1 | 2015 | 1 | 100
4 | 4 | 1 | 2015 | 1 | 50
5 | 5 | 1 | 2015 | 1 | 200
6 | 1 | 3 | 2015 | 1 | 75
7 | 2 | 3 | 2015 | 1 | 15
8 | 3 | 3 | 2015 | 1 | 40
9 | 4 | 3 | 2015 | 1 | 300
10 | 5 | 3 | 2015 | 1 | 250
11 | 1 | 3 | 2015 | 2 | 100
12 | 2 | 3 | 2015 | 2 | 50
13 | 3 | 3 | 2015 | 2 | 200
14 | 4 | 3 | 2015 | 2 | 300
15 | 5 | 3 | 2015 | 2 | 250
我想要的结果是获得所有电台的年度报告以及我尝试过的每个支出_头的费用
SELECT exp.name AS expenditure,st.name AS station,x.totalexpense
FROM expenditure_heads AS exp
LEFT JOIN
(SELECT expenditure_head_id,station_id,SUM(expense) as totalexpense
FROM expense_details
WHERE year = '2015'
GROUP by expenditure_head_id,station_id
)
AS x ON exp.id = x.expenditure_head_id
LEFT JOIN stations AS st ON x.station_id = st.id WHERE st.region_id=2
这仅给出费用_详细信息中 id 的车站的正确结果
expenditure | station | totalexpense
exp1 | sation3 | 175
exp2 | sation3 | 65
exp3 | sation3 | 240
exp4 | sation3 | 600
exp5 | sation3 | 500
但我想要这样的结果
expenditure | station | totalexpense
exp1 | sation3 | 175
exp2 | sation3 | 65
exp3 | sation3 | 240
exp4 | sation3 | 600
exp5 | sation3 | 500
exp1 | sation4 | 0
exp2 | sation4 | 0
exp3 | sation4 | 0
exp4 | sation4 | 0
exp5 | sation4 | 0
提前谢谢
最佳答案
修改您的查询以使用 LEFT OUTER JOIN 而不是 LEFT JOIN
SELECT exp.name AS expenditure,st.name AS station,x.totalexpense
FROM expenditure_heads AS exp
LEFT OUTER JOIN
(SELECT expenditure_head_id,station_id,SUM(expense) as totalexpense
FROM expense_details
WHERE year = '2015'
GROUP by expenditure_head_id,station_id
)
AS x ON exp.id = x.expenditure_head_id
LEFT OUTER JOIN stations AS st ON x.station_id = st.id WHERE st.region_id=2
您可以尝试以下查询,它可能会起作用:
SELECT exp.name AS expenditure,st.name AS station,x.totalexpense, exp_detail.expenditure_head_id, exp_detail.station_id, SUM(exp_detail.expense) AS totalexpense
FROM expenditure_heads exp
LEFT OUTER JOIN
expense_details exp_detail ON exp_detail.year ='2015' AND exp_detail.expenditure_head_id = exp.id
LEFT OUTER JOIN stations st ON exp_detail.station_id = st.id WHERE st.region_id=2
GROUP by exp_detail.expenditure_head_id,exp_detail.station_id
关于mysql - 与 SUM 的 LEFT 连接不显示其他表中不存在的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38652536/
我有这个示例代码: #include #include int main() { Eigen::MatrixXf M = Eigen::MatrixXf::Random(1000, 1000)
我有一个像这样的数据框: +-----+--------+ |count| country| +-----+--------+ | 12| Ireland| | 5|Thailand| +-
我想要 SUM(tot_bill_1+tot_bill_2) AS 总计,但这不起作用 SELECT *, IF(SUM(bill_1) IS NULL, '99', SUM(bill_1)) AS
如果我们有两个矩阵 X 和 Y,都是二维的,现在在数学上我们可以说:sum(X-Y)=sum(X)-总和(Y). Matlab 哪个效率更高?哪个更快? 最佳答案 在我的机器上,sum(x-y) 对于
我正在运行 Hive 1.1.0 并看到对于两个 bigint 列,active_users 和 inactive_users,SUM(active_users + inactive_users) <
是否可以在一个选择查询中求和? 类似这样的事情: SELECT id, SUM(current_price - bought_price)*amount AS profit FROM purchase
这是一个相当奇怪的结果。我希望这些具有相同的产量。 下面还有从数据库中提取的 excel 链接。 https://twentius.opendrive.com/files?89038281_muoyg
我必须对 2 个字段求和,然后再求和。从性能的角度来看,先添加字段还是在对列求和之后添加字段有什么区别? 方法 1 = SELECT SUM(columnA + columnB) 方法 2 = SEL
这是一个经典问题,但我很好奇是否有可能在这些条件下做得更好。 问题:假设我们有一个长度为4*N的排序数组,即每个元素重复4次。请注意,N 可以是任何自然数。此外,数组中的每个元素都受制于 0 A. 执
我正在编写一个 Pig 程序,该程序加载一个用制表符分隔整个文件的文件 例如:名称 TAB 年份 TAB 计数 TAB... file = LOAD 'file.csv' USING PigStora
我有一个包含以下字段的表: EmpID, Code, Amount, TransDate, CM, CMDate 我想要进入数据网格的是 SUM所有的Amount具有相同的 Code和 SUM CM具
我有两个单独的查询用于提取报告信息。一年效果很好。但是,如果一个月超过 1 年,则不会显示正确的响应。 这是我的两个查询: select SUM(rpt_complete.total) total,
我想查询一个团队的积分。通过在列上执行 SUM + 来自具有相同团队 ID 的另一个表的 SUM 来添加这些点。我试着这样写: SELECT k.id, s.fylke, s.
这个问题在这里已经有了答案: How to deal with floating point number precision in JavaScript? (47 个回答) Unexpected
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 5 年前。 Improve
我已经找了一段时间,但找不到这个问题的答案(也许我没有搜索正确的术语或其他东西)。基本上,我有一个数据库,每个日期有任意数量的条目。我需要取包含条目的最后 X 天的总和(忽略没有条目的天数)。我知道如
我正在尝试获取 B 行中包含 A 行中某个值的所有值中的一些值。我猜这个问题很简单。 这是我的查询: =QUERY('Sheet1'!$A$16:D, "Select sum(D) Where C c
我正在尝试运行以下查询,但出现以下错误: You have an error in your SQL syntax; check the manual that corresponds to your
我有一个 tableA,其中包含以下结构 我将此结构修改为如下所示的tableB,以减少行数,并且类别是固定长度的 假设我在 tableA 中修改为新结构后有 210 万条数据,tableB 仅包含
我的表在 Postgres 中的数据: id user_id sell_amount sell_currency_id buy_amount buy_currency_id type
我是一名优秀的程序员,十分优秀!