gpt4 book ai didi

sql - 用于展平一行中多个属性的简单 SQL 查询

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

我首先尝试在 Excel 中解决我的问题,但没有简单的修复方法,因此决定在 SQL 中尝试一下(在 PostgreSQL/pgAdminIII 上),我是初学者,但我没有找到令人满意的解决方案。

我的目标是“扁平化”包含单行中相似属性的数据集,这些属性应该有自己的一行。

举个例子可能会更清楚。我的数据列出购物袋及其内容如下:

id material color fruit1 fruit2 fruit3 
1 cotton red apple banana cherry
2 paper blue apple cherry
3 plastic red banana

我需要为每个水果创建一个新行的表,所以查询结果应该是这样的:

id material color fruit  
1 cotton red apple
1 cotton red banana
1 cotton red cherry
2 paper blue apple
2 paper blue cherry
3 plastic red banana

到目前为止,我想出了一个涉及CASE 的查询,但这只会返回第一个匹配项,因此不会返回所有需要的行。

SELECT  
id,
(CASE
WHEN 'apple' IN(fruit1, fruit2, fruit3) THEN 'apple_exh'
WHEN 'banana' IN(fruit1, fruit2, fruit3) THEN 'banana_exh'
WHEN 'cherry' IN(fruit1, fruit2, fruit3) THEN 'cherry_exh'
ELSE 'Error'
END) as "Fruit_Here"
FROM
mydb.shopping
WHERE
'apple' IN(fruit1, fruit2, fruit3)
OR
'banana' IN(fruit1, fruit2, fruit3)
OR
'cherry' IN(fruit1, fruit2, fruit3)

ORDER BY id;

返回

id; fruit_here
1;"apple_exh"
2;"apple_exh"
3;"banana_exh"

如果存在允许 CASE 返回所有匹配项,而不仅仅是第一个的技巧,那就太好了。我目前使用一系列 CASEUNION ALL(参见下面的苹果和香蕉示例)的解决方法有效,但不切实际地乏味,因为我的完整数据包括大约 30 种水果(也许我应该对蔬菜应用相同的“扁平化”,最初也是在一行上)。

SELECT  
id,
(CASE
WHEN 'apple' IN(fruit1, fruit2, fruit3) THEN 'apple_exh'
ELSE 'Error'
END) as "Fruit_Here"
FROM
mydb.shopping
WHERE
'apple' IN(fruit1, fruit2, fruit3)

UNION ALL

SELECT
id,
(CASE
WHEN 'banana' IN(fruit1, fruit2, fruit3) THEN 'banana_exh'
ELSE 'Error'
END) as "Fruit_Here"
FROM
mydb.shopping
WHERE
'banana' IN(fruit1, fruit2, fruit3)

UNION ALL

SELECT
id,
(CASE
WHEN 'cherry' IN(fruit1, fruit2, fruit3) THEN 'cherry_exh'
ELSE 'Error'
END) as "Fruit_Here"
FROM
mydb.shopping
WHERE
'cherry' IN(fruit1, fruit2, fruit3)

ORDER BY id, "Fruit_Here";

返回

id; fruit_here
1;"apple_exh"
1;"banana_exh"
1;"cherry_exh"
2;"apple_exh"
2;"cherry_exh"
3;"banana_exh"

我的问题:有没有其他明显的方法可以在 SQL 中执行此任务,而不必为每种类型的水果重复代码?

最佳答案

您只需要为每一列选择一条语句:

select id, material, color, fruit1 from mydb.shopping where fruit1 is not null
union
select id, material, color, fruit2 from mydb.shopping where fruit2 is not null
union
select id, material, color, fruit3 from mydb.shopping where fruit3 is not null

关于sql - 用于展平一行中多个属性的简单 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40895462/

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