我需要了解SQL的人的帮助,因为这是我的SQL技能无法解决的问题。那是我的桌子:
CREATE TABLE [dbo].[Orders]
(
id INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
customerName VARCHAR(30) NOT NULL,
customerAddress VARCHAR(30) NOT NULL,
submitDate DATE NOT NULL,
realizationDate DATE,
deliveryTypeId INT NOT NULL
FOREIGN KEY(deliveryTypeId) REFERENCES deliveryTypes(id)
);
CREATE TABLE [dbo].[OrderItems]
(
id INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
orderId INT NOT NULL,
productId INT NOT NULL,
productQuantity INT,
FOREIGN KEY(orderId) REFERENCES Orders(id),
FOREIGN KEY(productId) REFERENCES Products(id)
);
我需要创建一个存储过程,该存储过程将一对多相关记录插入数据库中的两个表(实际上,这实际上是多对多绑定的一部分,但是我只需要添加到这两个表中)。在我的应用程序(.NET)中,我需要传递一个记录“ Orders”和一个或多个记录“ OrderItems”。
我的问题是:
OrderItems -> orderId
中设置什么值。我找到了SCOPE_IDENTITY
函数,但我真的不知道该如何使用它。OrderItems
条记录?我只知道其中可以有一个或多个。OrderItems
的过程以及我应该在存储过程中声明哪些参数我非常感谢所有帮助,因为我面对这个问题要花费几个小时,而且我真的不知道该怎么办。
编辑:这是我到目前为止提出的代码:
CREATE PROCEDURE spAddOrder
(@customerName VARCHAR(30),
@customerAddress VARCHAR(30),
@submitDate DATE,
@deliveryTypeId INT
-- I don't know how to pass many OrderItems rows as argument
)
AS
BEGIN
INSERT INTO Orders(customerName, customerAddress, submitDate, deliveryTypeId)
VALUES (@customerName, @customerAddress, @submitDate, @deliveryTypeId)
SELECT SCOPE_IDENTITY() AS orderId
-- I don't know how to do it for unknown number of rows
INSERT INTO OrderItems(orderId, productId, productQuantity)
VALUES (@orderId, @productId, @productQuantity)
END;
GO
答案 0 :(得分:5)
尽管这个问题可能被认为过于笼统,因此离题,但它写得很好,并描述了许多没有经验的开发人员都面临的问题-因此,我认为它应该得到答案。
因此,我们将其分解为各种成分:
问::如何在插入后获取identity
列的值?
A: SQL Server提供了几种方法来做到这一点,最简单的方法可能是scope_identity
,但是最好的方法是使用output
子句。
问::如何向存储过程发送多行?
A:使用table valued parameter。
现在让我们看看我们到底要怎么做。
我们要做的第一件事是创建一个用户定义的表类型以用于表值参数-这样:
CREATE TYPE [dbo].[Udt_OrderItems] AS TABLE
(
productId int NOT NULL,
productQuantity int,
);
GO
然后,我们可以使用此类型作为表值参数来创建存储过程。 我们还将订单详细信息作为标量参数发送到存储过程:
CREATE PROCEDURE stp_InsertOrderWithItems
(
@customerName varchar(30),
@customerAddress varchar(30),
@submitDate date,
@realizationDate date,
@deliveryTypeId int,
@orderItems dbo.Udt_OrderItems readonly -- Table valued parameters must be readonly
)
AS
DECLARE @Ids AS TABLE (orderId int NOT NULL) -- for the output clause
INSERT INTO dbo.Orders (customerName, customerAddress, submitDate, realizationDate, deliveryTypeId)
OUTPUT inserted.Id INTO @Ids
VALUES(@customerName, @customerAddress, @submitDate, @realizationDate, @deliveryTypeId)
INSERT INTO dbo.OrderItems (orderId, productId, productQuantity)
SELECT orderId, productId, productQuantity
FROM @orderItems
CROSS JOIN @Ids -- We only have one value in @Ids so cross join is safe
GO
对于c#部分,这取决于您如何连接数据库-我将展示基本ADO.Net版本的示例:
using(var con = new SqlConnection(connectionString))
{
using(var cmd = new SqlCommand(con, "stp_InsertOrderWithItems"))
{
var dt = new DataTable()
dt.Columns.Add("productId", typeof(int));
dt.Columns.Add("productQuantity", typeof(int));
// populate data table here
cmd.Parameters.Add("@customerName", SqlDbType.VarChar, 30).Value = customerName;
// all the other scalar parameters here...
cmd.Parameters.Add(@orderItems, SqlDbType.Structured).Value = dt;
con.Open();
cmd.ExecuteNonQuery();
}
}