我正在写一个符合以下要求的 sql 脚本:(1) 它应该能够从 Asss_Transaction 表格和每个资产计算“运行总额”的单位数中获取每一份记录。 这个运行中的总列通过对所有 Asset_transaction 的单位进行汇总来计算, 交易日期小于或等于显示的 Asssess_ id 的交易日期。 我实现了这一点, 我认为它可以正常工作 。
然而,我的第二个需求是:
(2) 计算该日的单位值, 即从单位_ 股本表格中获取每个资产交易日期和该特定资产日期的售出单价, 并乘以所添加的单位数( “ 运行总额 ” )。 我正在努力步骤2
SCHEMA 用于 Sybase DATABASE 点击链接 -
i 至今已写入 。 < manger > ode i 。 manger >
set nocount on
go
declare mla_exceptions scroll cursor for
select distinct mla.asset_id from asset_transaction mla
go
Print asset_id, Amount, Transaction Name, Total Units, Transaction Datetime
declare @ml_asset double precision
open mla_exceptions
fetch first mla_exceptions
into @ml_asset
while (@@sqlstatus = 0)
begin
select mla.asset_id , , ,
-- mla.transaction_datetime, , ,
mla.amount, , ,
tt.name, , ,
(select sum (units) from asset_transaction where transaction_datetime <= mla.transaction_datetime and asset_id = @ml_asset and status = A ) Running Total Units , , ,
transaction_datetime
from asset_transaction mla noholdlock
Left outer join transaction_type tt on tt.transaction_type_id = mla.transaction_type_id where mla.asset_id = @ml_asset
order by mla.asset_id
fetch next mla_exceptions
into @ml_asset
end
close mla_exceptions
deallocate cursor mla_exceptions
go