문제 URL : https://solvesql.com/problems/mentor-mentee-list/
https://solvesql.com/problems/mentor-mentee-list/
solvesql.com
*문제 저작권으로 인하여 직접 작성한 쿼리문만 첨부
select YB.employee_id as mentee_id,
YB.name as mentee_name,
OB.employee_id as mentor_id,
OB.name as mentor_name
from employees YB cross join employees OB
where YB.join_date between '2021-09-01' and '2021-12-31'
and OB.join_date <= '2019-12-31'
and YB.department != OB.department
order by mentee_id, mentor_id
두 테이블 간의 결합에 있어 가능한 모든 조합을 확인할 수 있는 CROSS JOIN 사용
'Problem Solving' 카테고리의 다른 글
[SolveSQL] 서울숲 요일별 대기오염도 계산하기 (0) | 2025.02.24 |
---|---|
[SolveSQL] 온라인 쇼핑몰의 월 별 매출액 집계 (0) | 2025.02.24 |
[SolveSQL] 작품이 없는 작가 찾기 (0) | 2025.02.17 |
[백준] 2252-줄 세우기 (1) | 2025.02.15 |
[SolveSQL] 쇼핑몰의 일일 매출액과 ARPPU (0) | 2025.02.06 |