1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 03:11:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -8,13 +8,13 @@
| patient_name | varchar |
| conditions | varchar |
+--------------+---------+
patient_id (患者 ID是该表的主键。
在 SQL 中,patient_id (患者 ID是该表的主键。
'conditions' (疾病)包含 0 个或以上的疾病代码,以空格分隔。
这个表包含医院中患者的信息。</pre>
<p>&nbsp;</p>
<p>写一条&nbsp;SQL 语句,查询患有 I 类糖尿病的患者&nbsp;ID patient_id、患者姓名patient_name以及其患有的所有疾病代码conditions。I 类糖尿病的代码总是包含前缀&nbsp;<code>DIAB1</code>&nbsp;</p>
<p>查询患有 I 类糖尿病的患者&nbsp;ID patient_id、患者姓名patient_name以及其患有的所有疾病代码conditions。I 类糖尿病的代码总是包含前缀&nbsp;<code>DIAB1</code>&nbsp;</p>
<p><strong>任意顺序</strong> 返回结果表。</p>