你能帮我解决一下sql请求吗?我有一个包含三列的表格:
表中有不同的Response id
值。
我需要编写请求/查询以从“value from”和“value to”列中获取所有可能的值,并将其与当前Response id
相关联,而不会重复。
提前谢谢
安德烈
答案 0 :(得分:0)
我想你想要union
:
select response_id, value_from as target
from t
union -- on purpose to remove duplicates
select response_id, value_to as target
from t;
答案 1 :(得分:0)
尝试
Select distinct response_id,target from (
select response_id, value_from as target
from t1
union all
select response_id, value_to as target
from t1 ) as t2