🏕️상황 //school 리스트를 반환하는 메소드 //school_tb : id와 schoolName, tag_tb : name(태그명), user_tb : schoolId를 counting. 총 3개의 테이블을 조인하여 반환 public List findSchoolInfoWithTagsAndUserCount() { JPAQueryFactory queryFactory = new JPAQueryFactory(entityManager); QSchool school = QSchool.school; QTag tag = QTag.tag; QUser user = QUser.user; List schoolInfoList = queryFactory .select(Projections.constructor(SchoolI..