我在SQL server中创建了如下函数,我想获取最大ID然后将其传递给IDtextbox中的ASP表单 我该怎么做? "如果该功能有任何问题,请修复它并提供有关C#代码的建议" 如果我有另一个程序做不同的事情,我可以用同一个连接同时执行它吗?
Alter FUNCTION [dbo].[FN_Justification_MaxGroupID] ()
RETURNS INT
AS
BEGIN
Declare @MaxGroupID int
SELECT @MaxGroupID = Max([Justification_Group_ID]) +1 from [dbo].[TBL_Justification]
RETURN @MaxGroupID;
end
go
Declare @ID int
Select @ID= [dbo].[FN_Justification_MaxGroupID] ()
Select @ID
答案 0 :(得分:0)
使用SqlCommand的ExecuteScalar()
https://msdn.microsoft.com/en-us/library/hdt3k85x%28v=vs.110%29.aspx