순간을 기록으로

[LeetCode] Patients With a Condition 본문

Problem Solving

[LeetCode] Patients With a Condition

luminous13 2022. 11. 7. 14:23

문제

풀이

이 문제도 한번에 풀지 못했다.

처음에 conditions like '%DIAB1%'으로 시도했는데 틀렸다. 왜냐면 'PREDIAB1'처럼 앞에 문자가 붙을 경우는 제외되어야 하는데 포함되기 때문이다. 따라서 다음과 같이 작성해야 한다.

1
2
3
4
select *
from patients
where conditions like 'DIAB1%' or
      conditions like '% DIAB1%';
cs

 

 

'Problem Solving' 카테고리의 다른 글

[LeetCode] Rearrange Products Table  (0) 2022.11.08
[LeetCode] Two Sum  (0) 2022.11.07
[LeetCode] Group Sold Products By The Date  (0) 2022.11.07
[LeetCode] Fix Names in a Table  (0) 2022.11.07
[Java] 백준_카드 정렬하기_1715  (0) 2022.11.07
Comments