题解 | 查询培训指定课程的员工信息
查询培训指定课程的员工信息
https://www.nowcoder.com/practice/a0ef4574056e4a219ee7d651ba82efef
select b.staff_id, staff_name from staff_tb a join cultivate_tb b on a.staff_id=b.staff_id where course like '%course3%' order by b.staff_id
查询培训指定课程的员工信息
https://www.nowcoder.com/practice/a0ef4574056e4a219ee7d651ba82efef
select b.staff_id, staff_name from staff_tb a join cultivate_tb b on a.staff_id=b.staff_id where course like '%course3%' order by b.staff_id
相关推荐