3.3 Inline Table Valued Function
- A table-valued function is a function that returns data of table type. In this example we will create an inline table-valued function that will retrieve records of all the students whose DOB is less than the DOB passed to the function.
- The following example creates an inline table-valued function (TVF) in the AdventureWorks2012 database. The function takes one input parameter, a customer (store) ID, and returns the columns ProductID, Name, and the aggregate of year-to-date sales as YTD Total for each product sold to the store.
EXAMPLE: - CREATE FUNCTION employee (@e_id int)
RETURNS TABLE
AS
RETURN
(
SELECT e.employeeID, e.e_name,
FROM employee AS P
WHERE e_id = @e_id
);
EXECUTION: - SELECT * FROM employee (5);
Last modified: Tuesday, 17 December 2019, 12:53 PM