購物車事務

來源:互聯網
上載者:User

標籤:erro   自增欄位   stat   table   procedure   tput   sem   creat   ret   

USE [QuanLi]
GO
/****** Object: StoredProcedure [dbo].[BuyCar] Script Date: 11/12/2016 08:25:25 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[BuyCar] --建立預存程序ByCar
(
@Purchase_State varchar(200), --單據狀態
@Purchase_Remark varchar(200), --備忘
@Supplier_Id int, --外鍵供應商編碼
@WareHose_Id int, --外鍵倉庫編碼
@Employee_Id int, --經辦人
@xml xml --xml資料流
)
AS
Begin tran t12 --事務名稱
insert into Purchase(Purchase_curom,Purchase_date,Purchase_State,Purchase_Remark,Supplier_Id,WareHose_Id,Employee_Id)
values(CONVERT(INT,GETDATE(),112),GETDATE(),@Purchase_State,@Purchase_Remark,@Supplier_Id,@WareHose_Id,@Employee_Id)
declare @id int,@pointer int --定義參數
set @[email protected]@IDENTITY;---擷取自增欄位
create table #oo ---建立暫存資料表
(
Purchase_Id int, --採購主表編號(外鍵)
Product_Id int, --商品編號(外鍵)
PurchaseMate_Num int, --採購數量
PurchaseMate_Price decimal, --商品單價價格
PurchaseMate_Sum decimal --商品總價

)
execute sp_xml_preparedocument @pointer output,@xml--sp_xml_preparedocument語句 --將xml類型的資料迴圈添加到暫存資料表
insert into #oo(Product_Id,PurchaseMate_Num,PurchaseMate_Price,PurchaseMate_Sum)
select Product_Id,PurchaseMate_Num,PurchaseMate_Price,PurchaseMate_Sum from openxml (@pointer,‘/xml/product‘)--系統程式sp_xml_preparedocument指向‘/xml/product’
with(

Product_Id int, --商品編號
PurchaseMate_Num int, --採購數量
PurchaseMate_Price decimal, --商品單價價格
PurchaseMate_Sum decimal --商品總價
)
update #oo set [email protected] --修改值
insert into PurchaseMate(Purchase_Id,Product_Id,PurchaseMate_Num,PurchaseMate_Price,PurchaseMate_Sum) select Purchase_Id,Product_Id,PurchaseMate_Num,PurchaseMate_Price,PurchaseMate_Sum from #oo

if(@@ERROR<>0)
begin
rollback tran t12 --復原
return 0
end
else
begin
commit tran t12 --提交
return 1
end

購物車事務

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.