Skip to content

Commit

Permalink
Merge pull request #570 from dejavuhyo/patch-2024-11-18
Browse files Browse the repository at this point in the history
feat(posts): create 2024-11-18-mysql-week
  • Loading branch information
dejavuhyo authored Nov 18, 2024
2 parents 26f3f52 + 3cace74 commit 0e50dff
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions _posts/mysql/2024-11-18-mysql-week.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: MySQL 주별 통계 WEEK
author: dejavuhyo
date: 2024-11-18 10:20:00 +0900
categories: [Database, MySQL]
tags: [mysql-week, week, mysql-주별-통계, 주별-통계]
---

## 1. 주별 통계
WEEK 함수를 이용한다.

### 1) `ECOLI_DATA` 테이블

| ID | SIZE_OF_COLONY | DIFFERENTIATION_DATE |
|:-----:|:-----:|:-----:|
| 1 | 10 | 2019/01/01 |
| 2 | 2 | 2019/05/01 |
| 3 | 100 | 2020/01/01 |
| 4 | 17 | 2022/04/01 |
| 5 | 10 | 2020/09/01 |
| 6 | 101 | 2021/12/01 |

### 2) SQL

```sql
select CONCAT(WEEK(DIFFERENTIATION_DATE, 7), 'W') as WEEK
, COUNT(SUB_CD) as ECOLI_COUNT
from ECOLI_DATA
group by WEEK(DIFFERENTIATION_DATE)
```

## [출처 및 참고]
* [https://soobindeveloper8.tistory.com/932](https://soobindeveloper8.tistory.com/932)

0 comments on commit 0e50dff

Please sign in to comment.