0

現在、SQL Server 2012 で次のクエリを使用しています。「cd.billed_amt as [Disb Billed]」以外のフィールドに対して単一の行が返されます。これは、単一の bill_num に対して複数の結果を持つ可能性があります。

[Disb Billed] 列のみを要約して、最初の 8 行の結果セットが 2 行の結果セットになるようにしたいと考えています。

select distinct bbl.bill_num, 
       bb.tran_type, 
       hm.clnt_matt_code, 
       bb.tran_date, 
       bb.period, 
       cd.billed_amt as [Disb Billed], 
       fees_amt
  from blt_bill_amt bb
  join hbm_matter hm on bb.matter_uno = hm.matter_uno
  join blt_billm bbm on bbm.billm_uno = bb.billm_uno
  join blt_bill bbl on bbl.tran_uno = bbm.bill_tran_uno
  left outer join cdt_disb cd on cd.bill_tran_uno = bbl.tran_uno
 where bb.tran_type in ('WO', 'WOX') 
  and bb.period = '201401'
  and bbl.bill_num = 231728
order by  bb.tran_type, bbl.bill_num

現在の結果セット

bill_num tran_type clnt_matt_code       tran_date                period   Disb Billed   fees_amt
------------------------------------------------------------------------------------------------
231728   WO         N10118.1016         2013-04-18 00:00:00.000  201401   3.00          8.06
231728   WO         N10118.1016         2013-04-18 00:00:00.000  201401   20.00         8.06
231728   WO         N10118.1016         2013-04-18 00:00:00.000  201401   38.00         8.06
231728   WO         N10118.1016         2013-04-18 00:00:00.000  201401   42.50         8.06
231728   WO         N10118.1016-0001    2013-04-18 00:00:00.000  201401   3.00          0.94
231728   WO         N10118.1016-0001    2013-04-18 00:00:00.000  201401   20.00         0.94
231728   WO         N10118.1016-0001    2013-04-18 00:00:00.000  201401   38.00         0.94
231728   WO         N10118.1016-0001    2013-04-18 00:00:00.000  201401   42.50         0.94

目的の結果セット

bill_num tran_type clnt_matt_code       tran_date                period   Disb Billed   fees_amt
------------------------------------------------------------------------------------------------
231728   WO         N10118.1016         2013-04-18 00:00:00.000  201401   103.50        8.06
231728   WO         N10118.1016-0001    2013-04-18 00:00:00.000  201401   103.50        0.94
4

1 に答える 1

0

GROUP BY参照を使用して結果をグループ化する必要があります

あなたの例では:

select distinct bbl.bill_num, 
       bb.tran_type, 
       hm.clnt_matt_code, 
       bb.tran_date, 
       bb.period, 
       SUM(cd.billed_amt) as [Disb Billed], --sum the billed column
       fees_amt
  from blt_bill_amt bb
  join hbm_matter hm on bb.matter_uno = hm.matter_uno
  join blt_billm bbm on bbm.billm_uno = bb.billm_uno
  join blt_bill bbl on bbl.tran_uno = bbm.bill_tran_uno
  left outer join cdt_disb cd on cd.bill_tran_uno = bbl.tran_uno
 where bb.tran_type in ('WO', 'WOX') 
  and bb.period = '201401'
  and bbl.bill_num = 231728
GROUP BY bbl.bill_num, --add group by
       bb.tran_type, 
       hm.clnt_matt_code, 
       bb.tran_date, 
       bb.period,
       fees_amt
order by  bb.tran_type, bbl.bill_num
于 2013-09-24T09:42:03.750 に答える