SQL - 将不同数量的行与匹配ID组合在一起

时间:2017-09-05 13:26:51

标签: sql

我需要组合多行 每行作为ID和子ID ID标识用户,Sub ID标识合同期限。我需要根据这些行组合行并抓住其他列

实施例

ID      SubID   StartDate   StartVal   EndDate   
123456   1      37622       100        37686   
123456   2      37781       20         37782   
254896   22     38584       44         38658   
254896   23     38722       18         38766   
254896   24     38825       6          38890   
254896   25     38972       68         39011     
365897   1      39696       38         41191   

我的目标是

ID     StartDate1 StartVal1 EndDate1 EndValue1 StartDate2   StartVal2 EndDate2 EndValue2....  
123456 37622      100       37686    26        37781        20          37782  65                  
254896 38584      44        38658    59        38722        18          38766  20....
365897 39696      38        41191    71                              

ID     StartDate               StartVal    EndDate                 EndValue
123456 37622,37688             81,8        37637,37722             12,90
254896 38584,38740,38796,38836 98,22,68,10 38670,38788,38796,38925 6,10,31,57
365897 39696                   7           41191                   74

有什么建议吗?先谢谢Sam,

1 个答案:

答案 0 :(得分:0)

您可以使用联接:

Select * from USER join ContactPeriod ON User."some common attribute of both tables" ="Contact.that attribute"