11.获取所有员工当前的manager,如果员工是manager的话不显示
获取所有员工当前的manager
http://www.nowcoder.com/questionTerminal/e50d92b8673a440ebdf3a517b5b37d62
法一:WHERE 多条件限制
select de.emp_no,dm.emp_no as manager_no from dept_emp de,dept_manager dm where de.dept_no=dm.dept_no and de.emp_no!=dm.emp_no and dm.to_date='9999-01-01' and de.to_date='9999-01-01'
不等于用<>或者!=表示
法二:内连接+WHERE 多条件限制
select de.emp_no,dm.emp_no as manager_no from dept_emp de inner join dept_manager dm on de.dept_no=dm.dept_no and de.emp_no!=dm.emp_no and dm.to_date='9999-01-01' and de.to_date='9999-01-01'
数据分析阿宇君的SQL题解 文章被收录于专栏
数据分析的SQL题目