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

2023. 1. 6. 15:56코딩테스트/리트코드(LeetCode) - SQL Study Plan

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