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
- re.split
- JVM
- java
- 백준 파이썬
- 백준 19238
- MSA
- 프로그래머스
- with recursive
- Spring Boot
- sql 기술면접
- 백준
- springboot
- 백준 16236
- MySQL
- 프로래머스
- java 기술면접
- Spring
- Coroutine
- 백준 16719
- 웹어플리케이션 서버
- 백준 16235
- JPA
- spring security
- spring oauth
- 백준 17626
- 백준 15685
- 파이썬
- Kotlin
- 백준 17779
- spring cloud
Archives
- Today
- Total
시작이 반
[MySQL] like 본문
SMALL
특정문자 포함하는지 확인
문자%
- 문자로 시작하는 문자
select *
from animal_ins
where name like "el%";
%문자
- 문자로 끝나는 문자
select *
from animal_ins
where name like "%el";
%문자%
- 문자가 들어가는 문자
select *
from animal_ins
where name like "%el%";
like는 대소문자 구분x -> 구분하려면 binary(name) like "%el%" 이런식으로 binary를 써줘야함
select *
from animal_ins
where binary(name) like "%el%";
정확히 el을 포함하는 문자 검색
LIST
'Programming > MySQL' 카테고리의 다른 글
[MySQL] 문자열 자르기, 합치기 (2) | 2021.10.29 |
---|---|
[MySQL] IN, NOT IN (0) | 2021.09.13 |
[MySQL] IFNULL, if문 null값 확인 (0) | 2021.04.23 |
[MySQL] with recursive (0) | 2021.04.23 |
[MySQL] Group by, Having (0) | 2021.04.23 |