ストアドプロシージャパラメータのデフォルト値は定数である必要があります 。次のことを行う必要があります...
ALTER Procedure [dbo].[my_sp]
@currentDate datetime = null
AS
IF @currentDate is null
SET @currentDate = getdate()
ストアドプロシージャパラメータのデフォルト値は定数である必要があります 。次のことを行う必要があります...
ALTER Procedure [dbo].[my_sp]
@currentDate datetime = null
AS
IF @currentDate is null
SET @currentDate = getdate()