Manoj Kumar
How to call a function from a stored procedure in SQL Server ?
By Manoj Kumar in SQL Server on Jan 02 2017
  • Vinay K
    Mar, 2017 23

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

    • 3
  • Anurag Maurya
    Feb, 2017 10

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

    • 1
  • sushil kumar
    Mar, 2017 3

    Select yourfunctionName And keep this query in stored procedure.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS