일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- kakao
- FullyConnectedLayer
- dl
- 파이썬
- 자연어처리
- Word2vec
- Sigmoid
- CBOW
- hash
- MySQL
- select
- Programmers
- Stack
- sort
- Heap
- Python
- SQL
- 신경망
- algorithm
- skip-gram
- PPMI
- affine
- stak
- que
- boj
- 딥러닝
- DeepLearning
- backward
- Numpy
- 프로그래머스
Archives
- Today
- Total
혜온의 이것저것
[Programmers] SQL 고득점 kit select - 서울에 위치한 식당 목록 출력하기 (mysql) 본문
Data Analysis/SQL
[Programmers] SQL 고득점 kit select - 서울에 위치한 식당 목록 출력하기 (mysql)
혜온 :) 2023. 4. 10. 15:01https://school.programmers.co.kr/learn/courses/30/lessons/131118
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
select ri.rest_id, ri.rest_name, ri.food_type, ri.favorites, ri.address, round(rs.avg_score,2)
from rest_info ri,
(select rest_id, avg(review_score) avg_score
from rest_review
group by rest_id) rs
where ri.rest_id = rs.rest_id
and left(ri.address,2)='서울'
order by rs.avg_score desc, ri.favorites desc
'Data Analysis > SQL' 카테고리의 다른 글
[Programmers] SQL 고득점 kit select - 인기있는 아이스크림 (mysql)D (0) | 2023.04.10 |
---|---|
[Programmers] SQL 고득점 kit select - 조건에 부합하는 중고거래 댓글 조회하기 (mysql) (0) | 2023.04.10 |
[Programmers] SQL 고득점 kit select - 인기있는 아이스크림 (mysql) (0) | 2023.04.06 |
[Programmers] SQL 고득점 kit select - 평균 일일 대여 요금 구하기 (mysql) (0) | 2023.04.06 |
[Programmers] SQL 고득점 kit select - 흉부외과 또는 일반외과 의사 목록 출력하기 (mysql) (0) | 2023.04.06 |
Comments