leetcode

Solution to some Leetcode problems written in C++
git clone git://git.dimitrijedobrota.com/leetcode.git
Log | Files | Refs | README | LICENSE

1527.sql (125B)


      1 SELECT patient_id, patient_name, conditions
      2 FROM Patients
      3 WHERE conditions LIKE 'DIAB1%' OR
      4       conditions LIKE '% DIAB1%'