본문 바로가기

Algorithm/SQL

(SQL) - LeetCode (easy) 1527. Patients With a Condition

반응형

https://leetcode.com/problems/patients-with-a-condition/

📕 풀이방법

📔 정답 출력 | 반환

LIKE절을 사용해 DIAB1으로 시작하는 conditions를 select합니다.


📕 Code

📔 ANSI SQL

SELECT * FROM patients
WHERE conditions LIKE 'DIAB1%' OR conditions LIKE '% DIAB1%';

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.