一个函数调用另一个函数出现了问题,提示为 对象名 dbo.source() 无效,不知道为什么
做了两个函数 dbo.source函数,和dbo.testtest函数,dbo.source函数通过验证
dbo.testtest函数调用dbo.source函数是语法错误为
对象名:dbo.source无效
,这是为什么,哪里出错了???请教各位,谢谢@
CREATE FUNCTION dbo.source(@current int)
RETURNS varchar (10)
AS
BEGIN
declare @source1 varchar(10)
winloop:
set @source1='s'+cast(@current as varchar(10))
if not exists (select name from sysobjects
where name=@source1 and xtype='U')
begin
set @current=@current-1
goto winloop
end
return @source1
end
create function dbo.testtest
(@n int)
returns table
as
return(select xj from dbo.source(@n))
go