문제 87번 더보기Table: Employee+-------------+---------+| Column Name | Type |+-------------+---------+| empId | int || name | varchar || supervisor | int || salary | int |+-------------+---------+empId is the column with unique values for this table.Each row of this table indicates the name and the ID of an employee in addition to their salary and the id of their man..
프로그래머스 [Lv4] : 헤비 유저가 소유한 장소 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr🚨 내가 시도한 쿼리SELECT ID, NAME, HOST_IDFROM PLACESWHERE HOST_ID = (SELECT HOST_ID FROM PLACES GROUP BY HOST_ID HAVING COUNT(HOST_ID) >=2 )ORDER BY ID ASC;작성해서 실행하였더니,,,자주 발생하는 연산자 오류라고 한다! 그러면 어떻게 해야하는 건데?아하!! 그렇구만! 그러면 WHERE 절에 서..