how to call scalar function in sql server 2008

后端 未结 4 480
迷失自我
迷失自我 2020-12-30 18:26

I have created a Scalar Functions, it was created successfully, but when I call the function using select statement, it says Invalid object name \'dbo.fun_functional_score\

4条回答
  •  礼貌的吻别
    2020-12-30 19:08

    For Scalar Function Syntax is

    Select dbo.Function_Name(parameter_name)
    
    Select dbo.Department_Employee_Count('HR')
    

提交回复
热议问题