小编典典

从sql联合中删除重复项

sql

我正在使用联合(对或错)在一些表上做一些基本的sql

但我需要删除重复项。有任何想法吗?

select * from calls
left join users a on calls.assigned_to= a.user_id
where a.dept = 4 
union
select * from calls
left join users r on calls.requestor_id= r.user_id
where r.dept = 4

阅读 141

收藏
2021-03-17

共1个答案

小编典典

Union将删除重复项。Union All才不是。

2021-03-17