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
joing 방식
select * from a join b on a.id = b.id
Like
검색 방식
like '서울%' : 첫 글자가 서울을 포함하는 단어 검색
반올림
round(0.0004, 2) -> 소숫점 둘째짜리까지 / 소숫점 셋째자리에서 반올림