我的foos表中有以下数据结构:
-----------------------------------------------
| id | bar_id | baz_id | date | value |
-----------------------------------------------
| 1 | 1 | 1 | 2013-12-01 | failure |
| 2 | 1 | 1 | 2013-12-09 | failure |
| 3 | 2 | 1 | 2013-12-02 | success |
| 4 | 3 | 1 | 2013-12-10 | success |
| 5 | 3 | 1 | 2013-12-01 | failure |
| 6 | 3 | 1 | 2013-12-08 | success |
| 7 | 1 | 2 | 2013-12-02 | success |
| 8 | 1 | 2 | 2013-12-08 | failure |
| 9 | 1 | 2 | 2013-12-03 | success |
| 10 | 2 | 2 | 2013-12-07 | failure |
| 11 | 2 | 2 | 2013-12-08 | failure |
| 12 | 3 | 2 | 2013-12-04 | success |
| 13 | 3 | 3 | 2013-12-14 | failure |
-----------------------------------------------
Run Code Online (Sandbox Code Playgroud)
我的目标是为不同的baz_ids获取每个bar_id的成功/总计数.例如:
------------------------------
| bar_id | successes | total |
------------------------------
| 1 | 1 | 2 |
| 2 | 1 | 2 |
| 3 | 2 | 3 |
------------------------------
Run Code Online (Sandbox Code Playgroud)
这是一个有效的查询:
SELECT foos.bar_id,
successes,
COUNT(distinct baz_id) as total
FROM foos
LEFT JOIN
(SELECT bar_id, count(distinct baz_id) as successes
FROM foos
WHERE value = "success"
GROUP BY bar_id) as other
ON foos.bar_id = other.bar_id
GROUP BY bar_id
Run Code Online (Sandbox Code Playgroud)
有没有办法在不进行子选择的情况下使用MySQL函数获取成功列?似乎必须有一种方法可以使用GROUP_CONCAT或使用其他Group By Functions之一来执行此操作.
编辑
使用SUM(value="success")是接近的,但计算一个独特的baz_id的所有成功,而不是仅计算一次成功:
SELECT bar_id,
SUM(value="success") AS successes,
COUNT(distinct baz_id) as total
FROM foos
GROUP BY bar_id
------------------------------
| bar_id | successes | total |
------------------------------
| 1 | 2 | 2 | <- Successes should be 1
| 2 | 1 | 2 |
| 3 | 3 | 3 | <- Successes should be 2
------------------------------
Run Code Online (Sandbox Code Playgroud)
Joa*_*son 14
您可以使用CASEwith DISTINCT来获得相同的结果;
SELECT bar_id,
COUNT(DISTINCT CASE WHEN value='success' THEN baz_id ELSE NULL END) successes,
COUNT(DISTINCT baz_id) total
FROM foos
GROUP BY bar_id;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7965 次 |
| 最近记录: |