gpt4 book ai didi

sql - 计算每列值的频率,显示所有填充空白的列的结果

转载 作者:行者123 更新时间:2023-11-29 12:20:13 25 4
gpt4 key购买 nike

我有一个大型 SQL 数据库,如下所示:database layout

对于单个列,我会使用以下命令计算频率:

SELECT col1,count(1) FROM tbl GROUP BY col1;

给出如下所示的内容:output for a single column

但理想情况下,我想要一个命令在所有指定的列上运行上述内容,匹配值列,并用 0 填充空白。这在任何 SQL 实现中都可能吗?我目前正在使用 SQLite,但我们的关系相当开放。

这是我“期望的”输出: enter image description here

最佳答案

这是一个使用带有union all 的子查询的选项:

select col, count(1)
from (
select col1 col from yourtable
union all
select col2 from yourtable
union all
select col3 from yourtable
) t
group by col

鉴于您想要的结果,也许这就是您正在寻找的,而不是使用带条件聚合的 outer join:

select col, 
sum(case when t1.col1 = col then 1 else 0 end ) as Col1Count,
sum(case when t1.col2 = col then 1 else 0 end) as Col2Count,
sum(case when t1.col3 = col then 1 else 0 end) as Col3Count
from (
select col1 col from yourtable
union
select col2 from yourtable
union
select col3 from yourtable
) t
left join yourtable t1 on t.col in (t1.col1, t1.col2, t1.col3)
group by col

关于sql - 计算每列值的频率,显示所有填充空白的列的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29923339/

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