코딩테스트/리트코드(LeetCode) - SQL Study Plan

리트코드(LeetCode) SQL - 1527. Patients With a Condition

진한색 2023. 1. 6. 15:56

select patient_id,patient_name,conditions
    from Patients
    where conditions like "DIAB1%" or 
        conditions like "% DIAB1%"
728x90