I have the following tables:

我有以下表格:

PERSON_T              DISEASE_T               DRUG_T
=========             ==========              ========
PERSON_ID             DISEASE_ID              DRUG_ID
GENDER                PERSON_ID               PERSON_ID
NAME                  DISEASE_START_DATE      DRUG_START_DATE
                      DISEASE_END_DATE        DRUG_END_DATE

I want to write a query that takes an input of a disease id and returns one row for each person in the database with a column for the gender, a column for whether or not they have ever had the disease, and a column for each drug which specifies if they took the drug before contracting the disease. I.E. true would mean drug_start_date < disease_start_date. False would mean drug_start_date>disease_start_date or the person never took that particular drug.

我想写一个查询,输入id的疾病并返回数据库中的一行,每个人对性别列,列是否有过这种疾病,并为每个药物它指定一列如果他们把毒品染上疾病。也就是说,true意味着drug_start_date <迪萨斯e_start_date。false表示drug_start_date> 疾病或者从未服用过这种药物的人。

We currently pull all of the data from the database and use Java to create a 2D array with all of these values. We are investigating moving this logic into the database. Is it possible to create a query that will return the result set as I want it or would I have to create a stored procedure? We are using Postgres, but I assume an SQL answer for another database will easily translate to Postgres.

我们现在从数据库中提取所有数据,并使用Java创建一个包含所有这些值的2D数组。我们正在调查将这个逻辑移到数据库中。是否可以创建一个查询来返回我想要的结果集,还是必须创建一个存储过程?我们使用的是Postgres,但我假设另一个数据库的SQL答案很容易转化为Postgres。

2 个解决方案

#1


3

Based on the info provided:

根据提供的信息:

   SELECT p.name,
          p.gender,
          CASE WHEN d.disease_id IS NULL THEN 'N' ELSE 'Y' END AS had_disease,
          dt.drug_id
     FROM PERSON p
LEFT JOIN DISEASE d ON d.person_id = p.person_id
                   AND d.disease_id = ?
LEFT JOIN DRUG_T dt ON dt.person_id = p.person_id
                   AND dt.drug_start_date < d.disease_start_date

..but there's going to be a lot of rows that will look duplicate except for the drug_id column.

. .但是除了drug_id列之外,还有很多行看起来是重复的。

更多相关文章

  1. 字体图标的引入和通过媒体查询改变导航样式
  2. HTML样式和常用选择器
  3. 字体图标的引用和自定义样式/媒体查询的使用
  4. 数据库的CURD操作、PDO本质与原理的学习
  5. CSS之伪类选择器和简单盒子简单案例
  6. 伪类选择器与盒模型常用属性
  7. 伪类选择器-结构伪类、根据位置选择匹配
  8. 7.4——常用标签与应用场景之表格与单元格
  9. css伪类选择器和盒模型

随机推荐

  1. C++笔试题之实现简单记录错误功能
  2. C#中var和dynamic之间的区别是什么?
  3. Perl中如何对混合字符串进行排序?(代码示例
  4. C语言入门自学书籍推荐
  5. 用C++实现数据的管理功能
  6. Perl中如何实现堆栈
  7. C语言笔记-基于C语言实现的流水跑马灯
  8. C ++控制语句的使用
  9. Perl和C++的区别是什么?Perl和C++的简单比
  10. C#实现网络电子白板、课件功能 (在线教学