Skip to content

Commit

Permalink
[BE] fix: SELECT q.*을 q.id로 수정 (ID를 가져오도록) (#519)
Browse files Browse the repository at this point in the history
  • Loading branch information
donghoony authored Aug 21, 2024
1 parent 6ce5093 commit e87067b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface QuestionRepository extends JpaRepository<Question, Long> {
List<Question> findAllBySectionId(long sectionId);

@Query(value = """
SELECT q.* FROM question q
SELECT q.id FROM question q
LEFT JOIN section_question sq
ON sq.question_id = q.id
LEFT JOIN template_section ts
Expand Down

0 comments on commit e87067b

Please sign in to comment.