September 15, 2006 at 7:26 pm
Hi,
I had create a stored procedure with input parameter and a function.
I need to pass the parameter value from stored procedure to function.
How can i do that.??
Thanks for ur help
Regards
Killer
September 15, 2006 at 10:10 pm
SELECT dbo.functionname(@parameter)
--Jeff Moden
Change is inevitable... Change for the better is not.
September 16, 2006 at 8:49 am
Or if it's an table valued or inline function :
Select Cols_List from dbo.FunctionName (@Par1, @Par2) where ...
September 18, 2006 at 10:46 pm
Dear Jeff and RGR'us,
Thanks for ur replies.I will try ur solutions.
Regards
Killer
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply