因此,我有一个简单的表,其中包含每天提供给客户的商品和用户实际使用的商品。
date | offered_name | used_name | h_id
----------------------------------------------------------
2019-06-20 | Obsidian | Obsidian | 100
2019-06-20 | Obsidian | Limestone | 101
2019-06-20 | Limestone | Sandstone | 102
2019-06-21 | Obsidian | Limestone | 100
2019-06-21 | Obsidian | Sandtone | 101
2019-06-21 | Limestone | Limestone | 102
我想找到提供的项目与使用的项目匹配的所有实例。用户可以更改他们的used_item,因此我只关心他们是否至少一次匹配了Provided_name。如果它们从未匹配过,那么我就不想选择它们。上面的输出看起来像:
h_id | used_offered_item_at_least_once
---------------------------------------
100 | 1
101 | 0
102 | 1
类似于此问题SQL - find all instances where two columns are the same,但我想比较两个不同的列,而不是仅检查一个。
答案 0 :(得分:1)
您可以使用conditional aggregation
select h_id,
cast(sign(sum(case when offered_name = used_name then
1
else
0
end)) as int) as used_offered_item_at_least_once
from tab
group by h_id
答案 1 :(得分:1)
我将使用case
表达式编写该代码:
select id,
max(case when offered_name = used_name then 1 else 0 end) as used_offered_item_at_least_once
from t
group by id;
我想不出一种更简单的表达逻辑的方法。
答案 2 :(得分:0)
您可以使用分组依据并具有以下条件:
select h_id, count(1) "used_offered_item_at_least_once" from your_table
where offered_name = used_name
group by h_id
having count(1) = 1