3.4 Multi-Statement Table Valued Function

 

  • Multi-statement Table-valued Function is used in case we want to create a more complex function that may use conditions, loops etc. To create a simple Table-valued Function.
  • In this example, most (but not all) of the departments in the Departments table have a manager ID that corresponds to an employee in the Employees table. The following table-valued function accepts an employee ID as an argument and returns that employee and all of his/her subordinates.


EXAMPLE: - CREATE FUNCTION employee ( )

RETURNS @mytable TABLE

(

empid INT NOT NULL , 

empname VARCHAR(25) NOT NULL ,

Salary INT NULL

AS

BEGIN

INSERT INTO @ mytable

SELECT * FROM tblEmployees;

RETURN

END



Last modified: Tuesday, 17 December 2019, 12:53 PM