作用
如两表数据不可控,且需获取两表全数据(未关联数据也需要)时,可通过Full Join进行关联。
示例
示例来源: leetcode1965. 丢失信息的雇员
# orcale
select NVL(a.employee_id, b.employee_id) employee_id
from Employees a
full join Salaries b
on a.employee_id = b.employee_id
where a.employee_id + b.employee_id is null -- Null 和任何运算结果为Null
order by employee_id