Skip to content

Commit

Permalink
2024-02-27 20:31:59
Browse files Browse the repository at this point in the history
Affected files:
src/content/blog/programmers-즐겨찾기가-가장-많은 식당-정보-출력하기.md
  • Loading branch information
gyunseo committed Feb 27, 2024
1 parent 8e80dac commit 8061c7b
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,21 @@ ogImage: ""
## Table of contents

## 들어가며

## SQL Query

```sql
SELECT food_type, rest_id, rest_name, favorites
FROM rest_info
WHERE favorites in (
SELECT MAX(favorites)
FROM rest_info
GROUP BY food_type
)
GROUP BY food_type
ORDER BY food_type DESC;
```

## 틀린 첫번째 SQL Query

## 틀린 두번째 SQL Query

0 comments on commit 8061c7b

Please sign in to comment.