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

Решение

SELECT patient_id, patient_name, conditions
FROM Patients
WHERE conditions LIKE 'DIAB1%'
   OR conditions LIKE '% DIAB1%';