Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/sql-server/26.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Sql 不使用光标更新值_Sql_Sql Server_Azure Sql Database - Fatal编程技术网

Sql 不使用光标更新值

Sql 不使用光标更新值,sql,sql-server,azure-sql-database,Sql,Sql Server,Azure Sql Database,我在数据库中有一个表 账单 现在,用户支付的PAID_AMT->900美元,我希望将其分发,以便我的表格看起来: ID Total Paid Status 1 1000 1000 Paid 2 500 500 Paid 3 700 700 Paid 4 200 100 Part Paid 使用游标可以很容易地完成,但我想避免使用游标 可以使用带有

我在数据库中有一个表

账单 现在,用户支付的PAID_AMT->900美元,我希望将其分发,以便我的表格看起来:

ID     Total    Paid     Status
1       1000     1000     Paid  
2       500      500      Paid
3       700      700      Paid
4       200      100      Part Paid
使用游标可以很容易地完成,但我想避免使用游标

可以使用带有输出参数的简单更新查询来实现这一点吗

像这样的

Update Bill
Set Paid = Total,
Status = 'Paid',
Output  PAID_AMT = PAID_AMT  - (Total-Paid )
where Total-Paid  > PAID_AMT

假设SQL Server 2012,以下查询显示所欠金额:

select b.*,
       sum(total - paid) over (order by id) as cumNotPaid
from bill b
您现在可以分配金额:

select b.*,
       (case when cumNotPaid >= @AMOUNT then 0
             when cumNotPaid - toBePaid <= @AMOUNT then toBePaid
             else @AMOUNT - cumnotPaid
        end) as PaidAmount
from (select b.*,
             sum(total - paid) over (order by id) as cumNotPaid,
             total - paid as ToBePaid
      from bill b
     ) b
现在,这是一个可更新的CTE,所以我们可以在update语句中使用它:

with toupdate as (
      (select b.*,
              (case when cumNotPaid >= @AMOUNT then 0
                    when cumNotPaid - toBePaid <= @AMOUNT then toBePaid
                    else @AMOUNT - cumnotPaid
               end) as PaidAmount
       from (select b.*,
                    sum(total - paid) over (order by id) as cumNotPaid,
                    total - paid as ToBePaid
             from bill b
            ) b
      )
update toupdate
    set paid = PaidAmount,
        status = (case when total = paid then 'Paid' when total = 0 then 'UnPaid'
                       else 'PartPaid'
                  end);

我不知道你使用的是什么版本的SQL server,如果是2008,那么你就不能使用滚动和窗口函数。您可以尝试此递归查询:

declare @paid_amount int = 900

;with cte1 as (
    select
        b.id,
        b.total - b.paid as diff,
        row_number() over(order by id) as row_num
    from Bill as b
    where b.total <> b.paid
), cte2 as (
    select
        c1.id, c1.row_num, @paid_amount - c1.diff as paid_amount
    from cte1 as c1
    where c1.row_num = 1

    union all

    select
        c1.id, c1.row_num, c2.paid_amount - c1.diff as paid_amount
    from cte1 as c1
        inner join cte2 as c2 on c2.row_num + 1 = c1.row_num
    where c2.paid_amount > 0
)
update Bill set
     Paid = 
         case
             when c.paid_amount >= 0 then b.Total
             else b.Total - b.Paid + c.paid_amount
         end,
     Status = case when c.paid_amount >= 0 then 'Paid' else 'Part Paid' end
from Bill as b
    inner join cte2 as c on c.id = b.id
对于SQL server 2012,它更简单一些:

declare @paid_amount int = 900

;with cte1 as (
    select
        b.id,
        b.total - b.paid as amount_to_pay,
        sum(b.total - b.paid) over(order by b.id) as amount
    from Bill as b
    where b.total <> b.paid
), cte2 as (
    select
        c.id,
        @paid_amount - c.amount as remain_amount
    from cte1 as c
    where @paid_amount - c.amount + c.amount_to_pay >= 0
)
update Bill set
     Paid = 
         case
             when c.remain_amount >= 0 then b.Total
             else b.Total - b.Paid + c.remain_amount
         end,
     Status = case when c.remain_amount >= 0 then 'Paid' else 'Part Paid' end
from Bill as b
    inner join cte2 as c on c.id = b.id;

如果您使用的是SQL 2012,则可以使用以下内容:

DECLARE @PayAmount INT = 900;

WITH Dues AS
(
    SELECT *, Total-Paid AS Due
    FROM Bill
)

, Cumulative AS
(
    SELECT *, SUM(Due) OVER (ORDER BY Id) AS CumulativeTotalDue
    FROM Dues
)

, Payable AS
(
    SELECT *, @PayAmount - CumulativeTotalDue AS AmountLeftAfterPaying
    FROM Cumulative
)

, BillWithAmountToApplyRaw AS
(
    SELECT *
        , CASE 
            WHEN AmountLeftAfterPaying >= 0 THEN Due
            ELSE Due + AmountLeftAfterPaying
            END AS RawAmountToApply

    FROM Payable
)

, BillWithAmountToApply AS
(
    SELECT *, CASE WHEN RawAmountToApply < 0 THEN 0 ELSE RawAmountToApply END AS AmountToApply
    FROM BillWithAmountToApplyRaw
)
使用

如果你想的话,先去看看

SQL 2008版本效率较低,因为2012年不需要重复连接:

WITH Dues AS
(
    SELECT *, Total-Paid AS Due
    FROM Bill
)

, CumulativeDue AS
(
    SELECT base.Id, SUM(cumulative.Due) AS CumulativeTotalDue
    FROM Dues base
        JOIN Dues cumulative ON cumulative.Id <= base.Id
    GROUP BY base.Id
)

, Cumulative AS
(
    SELECT Dues.*, CumulativeDue.CumulativeTotalDue
    FROM Dues 
        JOIN CumulativeDue ON CumulativeDue.Id = Dues.Id
)

... as above

id列是否有间隙?那么是1,4,5,6,8?
UPDATE BillWithAmountToApply
SET Paid = Paid + AmountToApply
FROM BillWithAmountToApply
SELECT *
FROM BillWithAmountToApply
WITH Dues AS
(
    SELECT *, Total-Paid AS Due
    FROM Bill
)

, CumulativeDue AS
(
    SELECT base.Id, SUM(cumulative.Due) AS CumulativeTotalDue
    FROM Dues base
        JOIN Dues cumulative ON cumulative.Id <= base.Id
    GROUP BY base.Id
)

, Cumulative AS
(
    SELECT Dues.*, CumulativeDue.CumulativeTotalDue
    FROM Dues 
        JOIN CumulativeDue ON CumulativeDue.Id = Dues.Id
)

... as above
--BEGIN TRAN;

--CREATE TABLE Bill
--(
--  ID Int PRIMARY KEY IDENTITY,
--  Total INT NOT NULL,
--  Paid INT NOT NULL DEFAULT(0),
--  Status AS 
--      CASE 
--          WHEN Paid = Total THEN 'Paid'
--          WHEN Paid = 0 THEN 'Unpaid'
--          ELSE 'Part Paid'
--      END
--);

--WITH KnownValues(Total, Paid) AS
--(
--  SELECT 1000, 1000
--  UNION ALL SELECT 500, 400
--  UNION ALL SELECT 700, 0
--  UNION ALL SELECT 200, 0
--)

--INSERT INTO Bill(Total, Paid)
--SELECT *
--FROM KnownValues;

--COMMIT