牛客588483987号
牛客588483987号
全部文章
mysql练习
读书笔记(1)
题解(3)
归档
标签
去牛客网
登录
/
注册
牛客588483987号的博客
全部文章
/ mysql练习
(共3篇)
题解 | #查找所有已经分配部门的员工的last_name和first_name以及dept_no#
方法一:使用左连接 left join (注意剔除dept_no 为None的值)select a.last_name,a.first_name,b.dept_nofrom employees a left join dept_emp bon a.emp_no = b.emp_nowhere b.d...
MySQL
表连接
剔除空值
2021-07-09
0
375
题解 | #查找当前薪水详情以及部门编号dept_no#
方法一:使用左连接 left join (注意剔除dept_no 为None的值)select a.last_name,a.first_name,b.dept_nofrom employees a left join dept_emp bon a.emp_no = b.emp_nowhere ...
MySQL
表连接
剔除空值
2021-07-09
0
317
题解 | #查找当前薪水详情以及部门编号dept_no#
方法一:使用左连接 left join (注意剔除dept_no 为None的值)select a.last_name,a.first_name,b.dept_nofrom employees a left join dept_emp bon a.emp_no = b.emp_nowhere ...
MySQL
表连接
剔除空值
2021-07-09
0
340