[SQL문제풀기] 두 테이블 결합하기

silver's avatar
Aug 25, 2025
[SQL문제풀기] 두 테이블 결합하기
Contents
문제SQLite

문제

SQLite

내가 작성한 정답

select distinct athlete_id from events e join records r on r.event_id = e.id where e.sport like '%golf%';
Share article

silver