programmers 서울에 위치한 식당 목록 출력하기

    [프로그래머스, Lv.4] 서울에 위치한 식당 목록 출력하기 (mysql)

    https://school.programmers.co.kr/learn/courses/30/lessons/131118 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr select ri.REST_ID, REST_NAME, FOOD_TYPE, FAVORITES, ADDRESS, round(avg(review_score), 2) as SCORE from rest_info as ri right outer join rest_review as rr on ri.rest_id = rr.rest_id where address like '서울%' group by rr.rest..