Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#️⃣연관된 이슈
📝작업 내용
커리큘럼 별 퀴즈 검색 기능을 구현했습니다.
중첩 Join 문을 사용했는데, 흐름이 curriculum -> session -> keyword -> quiz 순으로 진행하려 했고
그 이유는 드라이빙 테이블의 컬럼을 줄이기 위해서입니다.
Join 과정에서 session 이 curriculum에 대한 인덱스가 없어 풀테이블 스캔을 하는데 session 의 경우 사용하지 않을 데이터면서 데이터가 그렇게 많이 생길 것 같지도 않기에 인덱스는 생략했습니다