अर्थपूर्ण त्रुटि फेंकने के लिए आप CAST का उपयोग कर सकते हैं:
create function dbo.throwError()
returns nvarchar(max)
as
begin
return cast('Error happened here.' as int);
end
तब Sql सर्वर कुछ मदद जानकारी दिखाएगा:
Msg 245, Level 16, State 1, Line 1
Conversion failed when converting the varchar value 'Error happened here.' to data type int.