From 8061c7b9df329ee90aebed58168fb77472b835e1 Mon Sep 17 00:00:00 2001 From: Gyunseo Lee Date: Tue, 27 Feb 2024 20:31:59 +0900 Subject: [PATCH] 2024-02-27 20:31:59 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Affected files: src/content/blog/programmers-즐겨찾기가-가장-많은 식당-정보-출력하기.md --- ...234\353\240\245\355\225\230\352\270\260.md" | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git "a/src/content/blog/programmers-\354\246\220\352\262\250\354\260\276\352\270\260\352\260\200-\352\260\200\354\236\245-\353\247\216\354\235\200 \354\213\235\353\213\271-\354\240\225\353\263\264-\354\266\234\353\240\245\355\225\230\352\270\260.md" "b/src/content/blog/programmers-\354\246\220\352\262\250\354\260\276\352\270\260\352\260\200-\352\260\200\354\236\245-\353\247\216\354\235\200 \354\213\235\353\213\271-\354\240\225\353\263\264-\354\266\234\353\240\245\355\225\230\352\270\260.md" index d2249a217..d0542a840 100644 --- "a/src/content/blog/programmers-\354\246\220\352\262\250\354\260\276\352\270\260\352\260\200-\352\260\200\354\236\245-\353\247\216\354\235\200 \354\213\235\353\213\271-\354\240\225\353\263\264-\354\266\234\353\240\245\355\225\230\352\270\260.md" +++ "b/src/content/blog/programmers-\354\246\220\352\262\250\354\260\276\352\270\260\352\260\200-\352\260\200\354\236\245-\353\247\216\354\235\200 \354\213\235\353\213\271-\354\240\225\353\263\264-\354\266\234\353\240\245\355\225\230\352\270\260.md" @@ -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