인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

twosoull4862's profile image
twosoull4862

asked

Real-world! Spring Boot and JPA Utilization 2 - API Development and Performance Optimization

@Query 사용 시 연관테이블은 order by 가 불가한가요?

Written on

·

206

0

@Query("SELECT t From Team t join Fetch t.member m ORDER BY m.name desc")

예를 들어 이런 식으로 Fetch join을 이용해서 연관테이블 리스트를 가져올 때에 정렬해서 가져오고 싶습니다.

검색 등을 통해 해결해보려 했지만 방법을 모르겠네요 ㅠㅠ

 

만약 @Query가 안된다면 다른 방식으로 가져오는 방법이 있을까요?

javaspringspring-bootjpa

Answer 1

0

안녕하세요. 이영훈님, 공식 서포터즈 David입니다.

혹시 질문 주신 쿼리로 쿼리를 실행해 보셨을까요?

만약 실행해 보셨다면 그 결과가 어땠는지 알려주실 수 있으실까요?

감사합니다.

twosoull4862's profile image
twosoull4862

asked

Ask a question