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
- dense_rank()
- over()
- left join
- 공공데이터
- stratascratch
- %_%
- asc
- r/2
- ERP
- between
- desc
- R/3
- S/4 HANA
- spa
- order by
- 중복 컬럼
- limit
- SQL
- union
- HAVING
- 오블완
- DateDiff
- SERVICE_KEY_IS_NOT_REGISTERED_ERROR
- SAP HANA
- 티스토리챌린지
- join
- CSV
- Where
- group by
- json
Archives
- Today
- Total
목록Where (1)
RE:cord
[SQL] Search for Data Containing Keywords (WHERE LIKE '%A%')
SELECT *FROM moviesWHERE title LIKE 'Christmas' OR title LIKE 'Santa'; * 정확하게 'Christmas' or 'Santa'가 title이어야 출력. It would be out if the title is 'Christmas' or 'Santa'. SELECT *FROM moviesWHERE title LIKE '%Christmas%' OR title LIKE '%Santa%'; * 'Christmas' or 'Santa'가 title에 포함되어 있으면 출력. It would be out if the title contained 'Christmas' or 'Santa.'
SQL
2024. 12. 3. 14:54