我正在使用联合(对或错)在一些表上做一些基本的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

最佳答案

Union将删除重复项。 Union All没有。

10-08 07:34