About 497,000 results
Open links in new tab
  1. SQL Server Table-Valued Function By Practical Examples

    Summary: in this tutorial, you will learn how to use SQL Server table-valued function including inline table-valued function and multi-statement valued functions. A table-valued function is a …

  2. sql - How to call table valued function inside select Statement ...

    Nov 28, 2014 · Table valued function returns a table and can be used just as a table in a sql query. So may be you can use a join with Emp. use CROSS APPLY. I'm not sure what your …

  3. SQL Table-Valued functions - SQL Tutorial

    SQL Table-Valued Function (TVF) is a user-defined function that returns a table as a result set. Unlike scalar functions that return a single value, a TVF can be used to encapsulate a complex …

  4. Select Data via a Table-Valued Function in SQL Server

    Feb 6, 2020 · Here’s a quick function that selects basic data from a table via an inline table-valued function. Result: The function looks like this: RETURNS TABLE. SELECT . CatId, CatName, …

  5. Table Valued Function in SQL Server Examples

    May 12, 2022 · Fortunately, SQL Server with its integration with .NET CLR brings you the possibility to use C# and any other CLR supported language to create the algorithm for the …

  6. SQL Server Table-valued function - T-SQL Tutorial

    A table-valued function in SQL Server is a user-defined function that returns a table as its output. This type of function can be very useful when you need to perform complex data …

  7. T-SQL 101: 114 Selecting from Table-Valued Functions

    Feb 12, 2025 · Another type of object that you might need to query is a table-valued function. Table-valued functions (TVFs) are predefined code i.e., somebody’s written the code, and they …

  8. Using Table-Valued Functions in SQL Server- CodeProject

    Mar 11, 2011 · The easiest way to start creating a table valued function (well, actually any function or procedure) is to use SQL Server Management Studio and start creating an anonymous T …

  9. Inline Table Valued Function in SQL Server - GeeksforGeeks

    Mar 3, 2023 · In SQL Server, an Inline Table-valued function (ITVF) is a user-defined function that returns a table as its result. Unlike a scalar function that returns a single scalar value, an Inline …

  10. How to use SQL Server Table-Valued Functions? - SQL and IT …

    Jun 5, 2023 · Tutorial about SQL Server table-valued functions with T-SQL practical examples to create, call and objects with parameters and joins.

  11. Some results have been removed
Refresh