forked from satnaing/astro-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Affected files: .obsidian/workspace.json src/content/blog/programmers-가장-비싼-상품-구하기.md src/content/blog/programmers-인기있는-아이스크림.md
- Loading branch information
Showing
3 changed files
with
46 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
author: Gyunseo Lee | ||
title: Programmers 가장 비싼 상품 구하기 SQL 문제 풀이 | ||
pubDatetime: 2024-02-25T14:41:00+09:00 | ||
modDatetime: 2024-02-25T14:41:00+09:00 | ||
featured: false | ||
draft: false | ||
tags: | ||
- SQL | ||
- Programmers | ||
- Coding-Test | ||
description: Aggregate function에 대해 더 공부해 보자... | ||
ogImage: https://res.cloudinary.com/gyunseo-blog/image/upload/f_auto/v1708839816/image_a2jb3n.png | ||
--- | ||
|
||
## Table of contents | ||
|
||
## 들어가며 | ||
|
||
![](https://res.cloudinary.com/gyunseo-blog/image/upload/f_auto/v1708839816/image_a2jb3n.png) | ||
|
||
이 문제는 집계 함수 중 `MAX`를 사용할줄 아는지 묻는 문제였다. | ||
|
||
## SQL Query | ||
|
||
```sql | ||
SELECT MAX(price) as MAX_PRICE | ||
FROM product; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters