最佳答案
我正在使用联合(对或错)对几个表执行一些基本的 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