我在 SQL 中有一个自定义函数,如果它报告错误而不中断或停止使用此函数的过程,我想返回值 NULL。
我怎样才能做到这一点?
我知道错误处理应该在它自己的函数内部完成,但是我应该在里面写什么呢?
示例:过程名称为 PROC ,函数名称为 FUNC
代码:
create dbo.PROC
AS
select column1, column2, FUNC(column3) as funccolumn
from table1
do somthing else
GO
我在 SQL 中有一个自定义函数,如果它报告错误而不中断或停止使用此函数的过程,我想返回值 NULL。
我怎样才能做到这一点?
我知道错误处理应该在它自己的函数内部完成,但是我应该在里面写什么呢?
示例:过程名称为 PROC ,函数名称为 FUNC
代码:
create dbo.PROC
AS
select column1, column2, FUNC(column3) as funccolumn
from table1
do somthing else
GO
您可以尝试检查要传递给函数的值是否为数字:
drop procedure sp_test
go
drop function fn_test
go
drop table t_test
go
create table t_test (id int, name varchar(255))
go
insert into t_test values(1,'coco')
insert into t_test values(2,'cucu')
insert into t_test values(2,'10')
insert into t_test values(2,'10.5')
go
create function fn_test(@p decimal(18,6)) returns int
as
begin
return @p * 10
end
go
create procedure sp_test
as
begin
select id, name,
/* when is a number you call the function */
case when isnumeric(name)<>0 then dbo.fn_test(name)
/* if isn't a number you return NULL */
else null end as call_to_fn_test
from t_test
end
go
sp_test