반응형 query methods1 JPA Query Methods 정리 오늘은 JPA에서 간단하게 우리가 원하는 데이터를 조회 할 수 있는 방법중에 하나인 Query Methods 에 대해서 알아보도록 하겠습니다. Keyword Usage JPQL Where and findByColumne1AndColumn2(col1, col2); select ... where column1 = col1 and column2 = col2 Where or findByColumn1OrColumn2(col1, col2); select ... where column1 = col1 or column2 = col2 Distinct findDistinctByColumn1(col1); select distinct ... where column1 = col1 Is, Equals findByColumn1Is.. Programing/JPA 2023. 4. 13. 이전 1 다음 💲 추천 글 반응형