web-dev-qa-db-ja.com

行の賢明な合計を計算する-SQLサーバー

これは私のテーブルです:

ID              Q1         Q2           Q3            Q4
----------------------------------------------------------------
20130712        NULL       728.63       NULL            NULL
20130712        8881.55    9673.68      2629.566        6251.984
20130713        1813       1813         84.49           1728.51
20130714        3632.65    3632.65      1209.412        2423.238
20130714        70.758     2637.43      70.758          0
20130714        1601.578   3569.73      204.745         1396.833
20130714        728.63     728.63       0               728.63
20130714        1401.629   2251.39      94.418          1307.211
20130715        583.956    5089.19      583.956         0
20130805        6317.277   8958         2629.566        3687.711

以下のような出力が必要です(列は動的に変化する可能性があるため、行ごとに合計を計算する必要があります)

ID              Q1         Q2           Q3            Q4             SUM(Q1:Q4)
---------------------------------------------------------------------------
20130712        NULL       728.63       NULL            NULL         728.63   
20130712        8881.55    9673.68      2629.566        6251.984     27436.78
20130713        1813       1813         84.49           1728.51      5439
20130714        3632.65    3632.65      1209.412        2423.238     ...
20130714        70.758     2637.43      70.758          0
20130714        1601.578   3569.73      204.745         1396.833
20130714        728.63     728.63       0               728.63
20130714        1401.629   2251.39      94.418          1307.211
20130715        583.956    5089.19      583.956         0
20130805        6317.277   8958         2629.566        3687.711
5
Uday

クエリの試行は表示されていませんが、おそらく次のようなものです。

SELECT
  ID, Q1, Q2, Q3, Q4,
  Q1 + Q2 + Q3 + Q4 AS "Total"
FROM MyTable

Q1Q2Q3、またはQ4のいずれかの値がnullの場合、Q1 + Q2 + Q3 + Q4はnullになります。 nullをゼロとして扱い、適切な合計を取得するには、代わりに次のようにします。

SELECT
  ID, Q1, Q2, Q3, Q4,
  COALESCE(Q1,0) + COALESCE(Q2,0) + COALESCE(Q3,0) + COALESCE(Q4,0) AS "Total"
FROM MyTable

COALESCE function は、リストの最初のnull以外の値を返します。

14
Ed Gibbs

もっと短い方法があるかどうかはわかりませんが、私ができる最もエレガントな方法は次のとおりです。

select
    ID, Q1, Q2, Q3, Q4,
    (
         select sum(S.Q)
         from (values (Q1), (Q2), (Q3), (Q4)) as S(Q)
         where S.Q is not null
    ) as [Total]
from Table1 as T

sql fiddle demo

動的SQLが必要な場合は、次のようなものを試してください。

declare @stmt nvarchar(max), @stmt1 nvarchar(max)

select
    @stmt = isnull(@stmt + ', ', '') + name,
    @stmt1 = isnull(@stmt1 + ', ', '') + '(' + name + ')'
from sys.columns
where object_id = object_id('Table1') and name not in ('ID')

select @stmt =
          'select ID, ' + @stmt + 
          ', (select sum(S.Q) from (values ' + @stmt1 +
          ') as S(Q) where S.Q is not null) as [Total] ' +
          'from Table1 as T'

exec sp_executesql @stmt = @stmt

sql fiddle demo

3
Roman Pekar

Roman Pekarを拡張して、一時テーブルを使用していてこれを実行したい場合は、次のようにtempdbを使用する必要があります。

select
@stmt = isnull(@stmt + ', ', '') + '[' + name + ']',
@stmt1 = isnull(@stmt1 + ', ', '') + '(' + '[' + name + ']'+  ')'
from tempdb.sys.columns
where object_id = object_id('tempdb..##TempTable') and name not in ('ID')
--ID would be one of the column names you DONT want to sum.
--also notice the double pound sign. you need to declare your temp table with double pounds or it wont work
--also notice how I put brackets around name, that's because my columns weren't working because they had slashes in their names.
--the rest of the code is the same
select @stmt =
          'select Date_Packed, ' + @stmt + '' + 
          ', (select sum(S.Q) from (values ' + @stmt1 +
          ') as S(Q) where S.Q is not null) as [Total] ' +
          'from tempdb..##TempTableas T'
          print @stmt

exec sp_executesql @stmt = @stmt
--don't forget to drop it
          drop table ##TempTable
0
user1944720