当前位置:Gxlcms > 数据库问题 > 笔记-Microsoft SQL Server 2008技术内幕:T-SQL语言基础-09 事务和并发

笔记-Microsoft SQL Server 2008技术内幕:T-SQL语言基础-09 事务和并发

时间:2021-07-01 10:21:17 帮助过:3人阅读

Start a new transaction BEGIN TRAN; -- Declare a variable DECLARE @neworderid AS INT; -- Insert a new order into the Sales.Orders table INSERT INTO Sales.Orders (custid, empid, orderdate, requireddate, shippeddate, shipperid, freight, shipname, shipaddress, shipcity, shippostalcode, shipcountry) VALUES (85, 5, 20090212, 20090301, 20090216, 3, 32.38, NShip to 85-B, N6789 rue de l‘‘Abbaye, NReims, N10345, NFrance); -- Save the new order ID in a variable SET @neworderid = SCOPE_IDENTITY(); -- Return the new order ID SELECT @neworderid AS neworderid; -- Insert order lines for new order into Sales.OrderDetails INSERT INTO Sales.OrderDetails (orderid, productid, unitprice, qty, discount) VALUES(@neworderid, 11, 14.00, 12, 0.000); INSERT INTO Sales.OrderDetails (orderid, productid, unitprice, qty, discount) VALUES(@neworderid, 42, 9.80, 10, 0.000); INSERT INTO Sales.OrderDetails (orderid, productid, unitprice, qty, discount) VALUES(@neworderid, 72, 34.80, 5, 0.000); -- Commit the transaction COMMIT TRAN;

 

笔记-Microsoft SQL Server 2008技术内幕:T-SQL语言基础-09 事务和并发

标签:

人气教程排行