From 9aae5a6de4f0826be55614d539c8dd10bbd79ed3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Fri, 27 Sep 2024 00:55:40 -0600 Subject: [PATCH] Time: 328 ms (54.37%), Space: 0B (100.00%) - LeetHub --- .../1527-patients-with-a-condition.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 1527-patients-with-a-condition/1527-patients-with-a-condition.sql diff --git a/1527-patients-with-a-condition/1527-patients-with-a-condition.sql b/1527-patients-with-a-condition/1527-patients-with-a-condition.sql new file mode 100644 index 0000000..e197044 --- /dev/null +++ b/1527-patients-with-a-condition/1527-patients-with-a-condition.sql @@ -0,0 +1,2 @@ +# Write your MySQL query statement below +SELECT * FROM Patients WHERE conditions LIKE "% DIAB1%" OR conditions LIKE "DIAB1%"; \ No newline at end of file