We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
쿼리 성능 개선
@Query(""" select meeting from Meeting meeting right join Mate mate on meeting.id = mate.meeting.id where mate.member.id = :memberId and meeting.overdue = false """ ) List<Meeting> findAllByMemberId(Long memberId); @Modifying(clearAutomatically = true) @Query("update Meeting m set m.overdue = true where m.overdue = false and m.date < CURRENT_DATE") void updateAllByNotOverdueMeetings(); Optional<Meeting> findByIdAndOverdueFalse(Long id); Optional<Meeting> findByInviteCode(String inviteCode); boolean existsByInviteCode(String inviteCode);
The text was updated successfully, but these errors were encountered:
eun-byeol
No branches or pull requests
📝 작업 내용
쿼리 성능 개선
The text was updated successfully, but these errors were encountered: