3
Reply

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

Manoj Kumar

Manoj Kumar

Jan 02, 2017
2.3k
0

    http://www.c-sharpcorner.com/UploadFile/rohatash/calling-a-function-from-a-stored-procedure-in-sql-server-201/This is best example

    Vinay K
    March 23, 2017
    3

    Create PROCEDURE [dbo].[YourProceduteToCallFunction] ( @YourParameter int, ) AS BEGINSelect dbo.[YourFunctionName](@YourParameter ) END

    Anurag Maurya
    February 10, 2017
    1

    Select yourfunctionName And keep this query in stored procedure.

    sushil kumar
    March 03, 2017
    0