RT
https://leetcode.cn/problems/replace-employee-id-with-the-unique-identifier/solution/
select b.unique_id, a.name from Employees a left join EmployeeUNI b on a.id = b.id;
select b.unique_id, a.name from Employees a , EmployeeUNI b where a.id = b.id;
where 过滤了null
TIPS
在使用left jion时,on和where条件的区别如下:
1、 on条件是在生成临时表时使用的条件,它不管on中的条件是否为真,都会返回左边表中的记录。
2、where条件是在临时表生成好后,再对临时表进行过滤的条件。这时已经没有left join的含义(必须返回左边表的记录)了,条件不为真的就全部过滤掉。
标签:join,条件,unique,where,id,left From: https://www.cnblogs.com/eat-too-much/p/17342456.html