SQL - 보유와어디에 다음 두 개의 테이블이 있습니다. 1. Lecturers (LectID, Fname, Lname, degree). 2. Lecturers_Specialization (LectID, Expertise). 나는 가장 전문화된 강사를 찾고 싶다.이것을 시도해도 동작하지 않습니다. SELECT L.LectID, Fname, Lname FROM Lecturers L, Lecturers_Specialization S WHERE L.LectID = S.LectID AND COUNT(S.Expertise) >= ALL (SELECT COUNT(Expertise) FROM Lecturers_Specialization GROUP BY LectID); 하지만 이렇게 해보면 효과가 있습니다. SELEC..