SQL

leetcode 1527. Patients With a Condition

무적김두칠 2022. 7. 18. 10:56

1
2
3
4
5
6
# Write your MySQL query statement below
select patient_id, patient_name, conditions
from Patients
where 
conditions like 'DIAB1%' or
conditions like '% DIAB1%'
cs
반응형