1
Reply

How to call a function from a stored procedure in SQL Server ?

Rohatash Kumar

Rohatash Kumar

Sep 25, 2012
2k
0

    create procedure myprocedure as begin-- by passing to a variabledeclare x intset x = dbo.function_name()or-- select it directlyselect dbo.function_name()or-- inline queryselect *, dbo,function_name()from table_name end

    Romzy Zu
    October 11, 2012
    0