我的db中有2个表。一个是hr_request_consultant 另一个是hr_request_candidate
1)hr_request_consultant:
ID, hr_request_id, consultant_id。
2)hr_request_candidate: ID, hr_request_id, candidate_id。
所以我想加入这两个表并计算hr_request_consultant表中特定hr_request_id的候选者
任何人都可以帮助我 提前致谢
答案 0 :(得分:0)
select a.hr_request_id, count(b.candidate_id)
from hr_request_consultant a
inner join hr_request_candidate b
on a.hr_request_id = b.hr_request_id
group by a.hr_request_id
我认为应该做这个工作吗?