Health service providers use specific prefixes to categorize chronic illnesses. You are tasked with identifying patients who have a diagnosis related to Type I Diabetes, which is represented by the code prefix DIAB1.
A patient can have multiple conditions listed in a single string, separated by spaces. You must find patients whose conditions string contains a word starting with DIAB1.
Rules:
- A valid match is a condition that starts with DIAB1 (e.g., DIAB100) or a condition where DIAB1 appears after a space (e.g., SNOTIC DIAB110).
- Output columns: patient_id, patient_name, conditions.
- Results must be sorted by patient_id in ascending order.