我的 SQL Server 中有一个以这些行代码开头的存储过程:
CREATE PROCEDURE [dbo].[SP_Notify]
-- Add the parameters for the stored procedure here
@UserName nvarchar(50),
@lastDate datetime
AS
BEGIN
-- my code...
我尝试使用以下代码调用存储过程:
DECLARE @data datetime
DECLARE @Username nvarchar(50)
SET @Username = CAST('myUserName' AS nvarchar(50))
SET @data = GetDate()
SP_Notify @Username , @data
但这会导致此错误:
消息 102,级别 15,状态 1,第 10 行
“SP_Notify”附近的语法错误。