SQL Server查询以计算余额

时间:2011-05-12 15:30:46

标签: sql sql-server

我希望我的SQL查询可以像这样运行。

enter image description here

我有两张桌子:

  1. Key1,Date,In
  2. key2,Date,Out
  3. 到目前为止,我用UNION

    实现了这一目标
    select Date , In , '' as 'out'
    from table1
    
    Union ALL
    
    select Date, '' as In, Out
    from table2
    

    余额怎么样?

    请帮帮我

1 个答案:

答案 0 :(得分:3)

目前,在SQL Server中计算运行总计的最快且实际唯一的方法是使用游标。

Declare @RunningTotals Table    
    (
    PrimaryKeyCol int not null Primary Key
    , TableName nvarchar(128) not null
    , Total money not null Default ( 0 )
    )

Declare @Values Cursor
Declare @PrimaryKeyCol int  
Declare @TableName nvarchar(128)
Declare @Date datetime
Declare @In money
Declare @Out money
Set @Values = Cursor Fast_Forward For
        Select Key1, 'Table1' As TableName, Date , In , Null as out
        From table1
        Union All
        Select Key2, 'Table2', Date, Null as In, Out
        From Table2     
        Order By Date

Open @Values
Fetch Next From @Values Into @PrimaryKeyCol, @TableName, @In, @Out

Set @Total = 0
While @@Fetch_Status = 0
Begin
    Set @Total = @Total + Coalesce(@In,0) - Coalesce(@Out,0)

    Insert @RunningTotals( PrimaryKeyCol, TableName, Total ) 
    Values( @PrimaryKeyCol, @TableName, @Total )

    Fetch Next From @Values Into @PrimaryKeyCol, @TableName, @In, @Out
End

Close @Values
Deallocate @Values

Select Date, In, Out, RT.Total
From (
        Select Key1 As PrimaryKeyCol, 'Table1' As TableName, Date , In , Null as out
        From table1
        Union All
        Select Key2, 'Table2', Date, Null as In, Out
        From Table2     
        ) As Z
    Join @RunningTotals As RT
        On RT.PrimaryKeyCol = T.PrimaryKeyCol
            And RT.TableName = Z.TableName