일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- Logrus
- goland
- http 413
- 디자인패턴
- apollo router
- elasticsearch
- 티스토리챌린지
- gitops
- 컴포지트패턴
- UnBuffered channel
- notification system
- 대규모 시스템 설계
- 배포 프로세스
- body size
- Kubernetes
- golang
- AWS
- GoF 디자인패턴
- System Design
- 배포 파이프라인
- 오블완
- 윈도우키보드
- Infra
- Buffered channel
- intellij ide
- GoF
- Golines
- Intellij
- Helm V3
- go
Archives
- Today
- Total
목록데이터베이스/MySQL (2)
Fall in IT.
MySQL JSON 데이터 필드 조회하는 방법
문제 User Table에 agreement 필드가 있고, agreement 필드의 값으로 JSON DATA가 저장되어 있을 경우 JSON DATA의 특정 값을 조회하고 싶다. 방법 # 마케팅 알람설정값 모두 조회 SELECT JSON_EXTRACT(agreement, '$.MarketingAlarm') as MarketingAlarm FROM user # 마케팅 알람설정이 true인 데이터만 조회 SELECT JSON_EXTRACT(agreement, '$.MarketingAlarm') as MarketingAlarm FROM user WHERE JSON_EXTRACT(agreement, '$.MarketingAlarm') = true
데이터베이스/MySQL
2020. 7. 7. 16:47