English 中文(简体)
运行的Sybase总计
原标题:Running Total Sybase
  • 时间:2012-05-24 10:15:09
  •  标签:
  • sql
  • sybase

我正在写一个符合以下要求的 sql 脚本:(1) 它应该能够从 Asss_Transaction 表格和每个资产计算“运行总额”的单位数中获取每一份记录。 这个运行中的总列通过对所有 Asset_transaction 的单位进行汇总来计算, 交易日期小于或等于显示的 Asssess_ id 的交易日期。 我实现了这一点, 我认为它可以正常工作 。

然而,我的第二个需求是:

(2) 计算该日的单位值, 即从单位_ 股本表格中获取每个资产交易日期和该特定资产日期的售出单价, 并乘以所添加的单位数( “ 运行总额 ” )。 我正在努力步骤2

SCHEMA 用于 Sybase DATABASE 点击链接 -

i 至今已写入 。 < manger > ode i 。

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
问题回答

恭喜你,我钦佩你坚韧不拔地解决了要求1。 不幸的是,表现会很差,因为你自己读了两次同一张桌子, 并试图用锁锁来控制锁。

如果同一资产id 存在多次呢? 您将会多次计算同一资产的总和 。

这是更好的 SQL 解决方案。 创建一个名为# asset_ sum 、 列资产_ id 和 资产_ sum 的临时性表格。 然后与原始表格一起加入这个临时表格 。

结果不是光标, 少了锁, 没有冗余 。

我稍后会回来给你一个详细的答复





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

难以执行 REGEXP_SUBSTR

I m 查询Oracle 10g。 我有两张表格(样本数据见下文)。 i m 试图提取一些领域

SQL Query Shortcuts

What are some cool SQL shorthands that you know of? For example, something I learned today is you can specify to group by an index: SELECT col1, col2 FROM table GROUP BY 2 This will group by col2

PHP array callback functions for cleaning output

I have an array of output from a database. I am wondering what the cleanest way to filter the values is example array Array ( [0] => Array ( [title] => title 1 ...

OracleParameter and DBNull.Value

we have a table in an Oracle Database which contains a column with the type Char(3 Byte). Now we use a parameterized sql to select some rows with a DBNull.Value and it doesn t work: OracleCommand ...

Running numbers in SQL

I have a SQL-statement like this: SELECT name FROM users WHERE deleted = 0; How can i create a result set with a running number in the first row? So the result would look like this: 1 Name_1 2 ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签