当前位置:网站首页>1527. 患某种疾病的患者
1527. 患某种疾病的患者
2022-08-05 02:32:00 【只是六号z】
前言
患者信息表: Patients
+--------------+---------+
| Column Name | Type |
+--------------+---------+
| patient_id | int |
| patient_name | varchar |
| conditions | varchar |
+--------------+---------+
patient_id (患者 ID)是该表的主键。
'conditions' (疾病)包含 0 个或以上的疾病代码,以空格分隔。
这个表包含医院中患者的信息。
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/patients-with-a-condition
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
写一条 SQL 语句,查询患有 I 类糖尿病的患者 ID (patient_id)、患者姓名(patient_name)以及其患有的所有疾病代码(conditions)。I 类糖尿病的代码总是包含前缀 DIAB1 。
按 任意顺序 返回结果表。
查询结果格式如下示例所示。
示例1:
输入:
Patients表:
+------------+--------------+--------------+
| patient_id | patient_name | conditions |
+------------+--------------+--------------+
| 1 | Daniel | YFEV COUGH |
| 2 | Alice | |
| 3 | Bob | DIAB100 MYOP |
| 4 | George | ACNE DIAB100 |
| 5 | Alain | DIAB201 |
+------------+--------------+--------------+
输出:
+------------+--------------+--------------+
| patient_id | patient_name | conditions |
+------------+--------------+--------------+
| 3 | Bob | DIAB100 MYOP |
| 4 | George | ACNE DIAB100 |
+------------+--------------+--------------+
解释:Bob 和 George 都患有代码以 DIAB1 开头的疾病。
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/patients-with-a-condition
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
like
select
patient_id,patient_name,conditions
from
Patients
where
// 因为conditions字段符合DIAB1的前面会有空格,所以使用 '% xxx%'
conditions like 'DIAB1%' or conditions like '% DIAB1%';
边栏推荐
- 程序员的七夕浪漫时刻
- 力扣-二叉树的前序遍历、中序遍历、后序遍历
- leetcode 15
- The 20th day of the special assault version of the sword offer
- std::string::find 返回值的坑
- 树形查找(二叉查找树)
- 解决connect: The requested address is not valid in its context
- 协作D2D局部模型聚合的半分散联合学习
- Industry case | insurance companies of the world's top 500 construction standards can be used to drive the business analysis system
- Go 微服务开发框架 DMicro 的设计思路
猜你喜欢
随机推荐
iNFTnews | What can NFTs bring to the sports industry and fans?
.Net C# 控制台 使用 Win32 API 创建一个窗口
RAID disk array
DAY23:命令执行&代码执行漏洞
[C language] Detailed explanation of stacks and queues (define, destroy, and data operations)
Flink 1.15.1 集群搭建(StandaloneSession)
leetcode-另一棵树的子树
Domain Driven Design - MDD
意识形态的机制
lua learning
ARM Mailbox
Access Characteristics of Constructor under Inheritance Relationship
Images using redis cache Linux master-slave synchronization server hard drive full of moved to the new directory which points to be modified
How do programmers without objects spend the Chinese Valentine's Day
特殊矩阵的压缩存储
海量服务实例动态化管理
Greenplum数据库故障分析——能对数据库base文件夹进行软连接嘛?
Regular expression to match a certain string in the middle
iNFTnews | 对体育行业和球迷来说,NFT可以带来什么?
Greenplum Database Fault Analysis - Can a Soft Connection Be Made to the Database Base Folder?