题解 | #查询被投递过的职位信息#
查询被投递过的职位信息
https://www.nowcoder.com/practice/b4e9b51872b7473e8e906bcd25948859
select t2.* from deliver_record as t1 join job_info as t2 on t1.job_id = t2.job_id -- where t1.resume_if_checked = 1 -- order by -- t2.company_id;
查询被投递过的职位信息
https://www.nowcoder.com/practice/b4e9b51872b7473e8e906bcd25948859
select t2.* from deliver_record as t1 join job_info as t2 on t1.job_id = t2.job_id -- where t1.resume_if_checked = 1 -- order by -- t2.company_id;
相关推荐