DECLARE @raiseErrorCode nvarchar(50) SET @raiseErrorCode = CONVERT(nvarchar(50), YOUR UNIQUEIDENTIFIER KEY) RAISERROR(‘%s INVALID ID. There is no record in table‘,16,1, @raiseErrorCode)
RAISERROR ( N‘This is message %s %d.‘, -- Message text, 10, -- Severity, 1, -- State, N‘number‘, -- First argument. 5 -- Second argument. ); -- The message text returned is: This is message number 5.
时间: 2024-10-12 08:34:23