[프로그래머스] 서울에 위치한 식당 목록 출력하기

박의진·2023년 6월 30일
0

코딩테스트

목록 보기
23/25
post-custom-banner

SELECT i.rest_id, i.rest_name, i.food_type, i.favorites, i.address, round(avg(r.review_score),2) score from
rest_info i join rest_review r on i.rest_id = r.rest_id where address like '서울%'
group by i.rest_id, i.rest_name, i.food_type, i.favorites, i.address
order by score desc, i.favorites desc

관련 MYsql 문법

  1. joing 방식
    select * from a join b on a.id = b.id

  2. Like
    검색 방식
    like '서울%' : 첫 글자가 서울을 포함하는 단어 검색

  3. 반올림
    round(0.0004, 2) -> 소숫점 둘째짜리까지 / 소숫점 셋째자리에서 반올림

profile
주니어 개발자의 개발일지

0개의 댓글