Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 726 Bytes

138_patients_with_a_condition.md

File metadata and controls

41 lines (27 loc) · 726 Bytes

SQL Everyday #138

Patients With a Condition

Site: LeetCode
Difficulty per Site: Easy

Problem

Write a solution to find the patient_id, patient_name, and conditions of the patients who have Type I Diabetes. Type I Diabetes always starts with DIAB1 prefix.

Return the result table in any order. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT
    *
FROM Patients
WHERE (conditions LIKE "DIAB1%") OR (conditions LIKE "% DIAB1%")
;

Site Solution

-- LeetCode Solution 
-- TBD

Notes

TBD

NB

TBD

Go to Index
Go to Overview