Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Coroutine
- 백준 15685
- MySQL
- re.split
- Spring
- 백준 17779
- java 기술면접
- 프로그래머스
- Spring Boot
- 웹어플리케이션 서버
- sql 기술면접
- 백준 16719
- spring cloud
- 파이썬
- JPA
- 백준 16235
- java
- spring oauth
- 백준
- 백준 19238
- spring security
- 프로래머스
- springboot
- Kotlin
- 백준 16236
- 백준 파이썬
- 백준 17626
- JVM
- with recursive
- MSA
Archives
- Today
- Total
시작이 반
[MySQL] IN, NOT IN 본문
SMALL
예를 들어 ANIMAL_INS 테이블이 다음과 같다면
ANIMAL_ID | ANIMAL_TYPE | DATETIME | INTAKE_CONDITION | NAME | SEX_UPON_INTAKE |
A365172 | Dog | 2014-08-26 12:53:00 | Normal | Diablo | Neutered Male |
A367012 | Dog | 2015-09-16 09:06:00 | Sick | Miller | Neutered Male |
A365302 | Dog | 2017-01-08 16:34:00 | Aged | Minnie | Spayed Female |
A381217 | Dog | 2017-07-08 09:41:00 | Sick | Cherokee | Neutered Male |
INTAKE_CONDITION 이 Sick인 동물 검색
where intake_condition = "Sick" 로 검색할 수 도있지만
IN 사용
select animal_id, name
from animal_ins
where intake_condition in ("Sick")
order by animal_id asc;
NOT IN 사용
select animal_id, name
from animal_ins
where intake_condition not in (select intake_condition from animal_ins where intake_condition != "Sick")
order by animal_id asc;
LIST
'Programming > MySQL' 카테고리의 다른 글
[MySQL] 문자열 자르기, 합치기 (2) | 2021.10.29 |
---|---|
[MySQL] like (0) | 2021.09.14 |
[MySQL] IFNULL, if문 null값 확인 (0) | 2021.04.23 |
[MySQL] with recursive (0) | 2021.04.23 |
[MySQL] Group by, Having (0) | 2021.04.23 |