在SQL查询中选择重复日期

时间:2015-09-11 18:44:53

标签: sql

我的查询现在看起来像这样

 Select program_name, provider_name, patient_name, service_date
 From Table
 Order By program_name, provider_name, patient_name

以下是示例输出:

program name     provider_name     patient name     service_date
pcare            john smith        Washingto        1/1/2014
pcare            john smith        Washington       1/5/2014
pcare            john smith        Obama            1/6/2014
pcare            john smith        Obama            1/6/2014
pcare            john smith        Bush             1/7/2014
pcare            john smith        Bush             1/18/2014
pcare            john smith        Clinton          1/18/2014

我想做的是选择在同一天获得超过1项服务的患者。所以我唯一想要的是

pcare            john smith       Obama             1/6/2014
pcare            john smith       Obama             1/6/2014

我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

这样做的一种方法是写:

DoExpressCheckoutPayment