- 서울에 위치한 식당목록 - Level : 4 - https://school.programmers.co.kr/learn/courses/30/lessons/131118 SELECT a.rest_id, a.rest_name, a.food_type, a.favorites, a.address, ROUND(AVG(b.review_score), 2) AS score FROM rest_info AS a INNER JOIN rest_review AS b ON a.rest_id = b.rest_id WHERE a.address LIKE "서울%" GROUP BY a.rest_id ORDER BY score DESC, a.favorites DESC - 보호소에서 중성화한 동물 - Level : 4 - https://sc..