小编典典

如何在SQL Server 2008中调用标量函数

sql

我已经创建了一个标量函数,它已成功创建,但是当我使用select语句调用该函数时,它说无效的对象名’dbo.fun_functional_score’。

我的功能:

 ALTER function [dbo].[fun_functional_score] (@phy_id varchar(20))
 returns  varchar(50)

as
begin

declare @level_initial int, @level_current int

-- initial functional score
set @level_initial=(SELECT pflag.fun_level
FROM tbl_phy_demographic_details as [phy] 
    inner join tbl_all_purple_flag_level as [pflag] on phy.Demographic_id=pflag.Id 
WHERE phy.Physicion_id=@phy_id
    and pflag.visited_count=(select MAX(visited_count)-1 from tbl_all_purple_flag_level ))


-- current functional score
set @level_current=(SELECT pflag.fun_level
FROM tbl_phy_demographic_details as [phy] 
    inner join tbl_all_purple_flag_level as [pflag] on phy.Demographic_id=pflag.Id 
WHERE phy.Physicion_id=@phy_id
    and pflag.visited_count=(select MAX(visited_count) from tbl_all_purple_flag_level ))


--to calculate functional score
declare @fun_level varchar(20),@result varchar(50)

set  @fun_level=@level_current-@level_initial;

 if @fun_level = 0   set @result='Maintained' 
if @fun_level = '-1'  set @result='Minor Improvement' 
if @fun_level = '-2'  set @result='Moderate Improvement' 
if @fun_level = '-3'  set @result='Significant Improvement' 
if @fun_level =  '-4'  set @result='Substantial Improvement' 
if @fun_level =  '1'  set @result='Minor Reduction' 
if @fun_level =  '2'  set @result='Moderate Reduction' 
if @fun_level =  '3'  set @result='Significant Reduction' 
if @fun_level =  '4'  set @result='Substantial Reduction'




return @result

end

我用这个选择来打电话

 select * from dbo.fun_functional_score('01091400003') as [er]

或者

 select * from dbo.fun_functional_score('01091400003')

两者都显示错误“无效的对象名称’dbo.fun_functional_score’。”

我哪里出错了。谁能帮我…


阅读 182

收藏
2021-03-17

共1个答案

小编典典

您的语法适用于表值函数,该函数返回结果集,并且可以像表一样查询。对于标量函数

 select  dbo.fun_functional_score('01091400003') as [er]
2021-03-17