About 4,670,000 results
Open links in new tab
  1. CREATE FUNCTION (Transact-SQL) - SQL Server | Microsoft Learn

    Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance SQL database in Microsoft Fabric Creates a user-defined function (UDF), which is a Transact-SQL or common language …

  2. How to CREATE FUNCTION in SQL Server

    Feb 26, 2024 · This tutorial explains how to create function in SQL Server using the CREATE FUNCTION command.

  3. T-SQL Create Function syntax and example

    The example below shows how to create a Table-valued function in the SQL Server. The CREATE FUNCTION keyword is used, the function contains an int type parameter and returns a table data type.

  4. CREATE FUNCTIONSQL Tutorial

    The SQL CREATE FUNCTION statement is used to define a new user-defined function (UDF) in a database. A function in SQL is a set of SQL statements that perform a specific task and return a …

  5. SQL Server Functions: Create, Alter, Call - TutorialsTeacher.com

    Functions in SQL Server contains SQL statements that perform some specific tasks. Functions can have input parameters and must return a single value or multiple records. If your scripts use the same set …

  6. SQL Server: Functions - TechOnTheNet

    Learn how to create and drop functions in SQL Server (Transact-SQL) with syntax and examples. In SQL Server, a function is a stored program that you can pass parameters into and return a value.

  7. SQL Server User Defined Function Example

    Nov 1, 2019 · SQL Server offers three types of user defined functions (udf) and in this tip we will cover examples for each of the three major types of user-defined function types: scalar-valued, table …

  8. How to Create Functions in SQL Server - DatabaseFAQs.com

    Jul 26, 2024 · I trust this tutorial helps you create scalar and table-valued functions. It also covered the advantages and differences between stored procedures and functions.

  9. CREATE FUNCTION - SQL Server - SS64.com

    The details of the return clause will vary for Scalar, Inline/Multistatement Table-valued, or CLR functions. See SQL Server books online or the resources on the SQL Links page.

  10. Functions In SQL Server: A Beginner's Guide - C# Corner

    This article explains how to create functions in SQL Server using the SQL function operator.