Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 USED DEFINED FUNCTION EXECUTION

Author  Topic 

DURGESH
Posting Yak Master

105 Posts

Posted - 2008-06-16 : 02:39:32
HOW TO EXECUTE UDF
I MEAN WHAT IS THE PROPER STATEMENTS
FROM THE FOLLOWING

SELECT * FROM DBO.FUNCTIONNAME
OR
SELECT FROM FUNCTIONNAME

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-16 : 02:41:53
SELECT * FROM dbo.FunctionName(Param1Value,Param2Value,...)
if the UDF is table valued

and SELECT dbo.FunctionName(Param1Value,Param2Value,...)
if UDF is scalar valued UDF.
Go to Top of Page
   

- Advertisement -