patient_id, patient_name, and conditions columns from the Patients table.WHERE clause to filter the results based on the conditions column.WHERE clause, use the LIKE operator with two patterns: 'DIAB1%' and '% DIAB1%'.OR logical operator to combine the two LIKE conditions, ensuring that either condition will include the patient in the results.conditions column contains a Type I Diabetes code.erDiagram
Patients {
int patient_id
varchar patient_name
varchar conditions
}