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.
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 STATEMENTSFROM THE FOLLOWINGSELECT * FROM DBO.FUNCTIONNAMEOR 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 valuedand SELECT dbo.FunctionName(Param1Value,Param2Value,...)if UDF is scalar valued UDF. |
 |
|
|
|
|