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

    Use CREATE FUNCTION to create a reusable T-SQL routine that can be used in these ways: The integration of .NET Framework CLR into SQL Server is discussed in this article. CLR …

  2. CREATE FUNCTION – SQL 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 …

  3. 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.

  4. T-SQL Create Function syntax and example

    The example below shows how to create a function in the SQL Server database using the T-SQL language. The created function is of scalar type, the CREATE FUNCTION keyword is used, …

  5. 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 …

  6. PostgreSQL: Documentation: 18: CREATE FUNCTION

    Nov 13, 2025 · Use CREATE OR REPLACE FUNCTION to change a function definition without breaking objects that refer to the function. Also, ALTER FUNCTION can be used to change …

  7. Create user-defined functions | MSSQL Tutorial - Hasura

    MS SQL user-defined functions are of 2 types: Scalar and Tabular-Valued based on the type of result set each return. A Scalar function accepts one or more parameters and returns a single …

  8. 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 …

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

    Jul 26, 2024 · System Function is also called a built-in function that is defined by the system. This built-in function will save time while performing the specific task. This system function works …

  10. sql-docs/docs/t-sql/statements/create-function-transact-sql.md …

    Creates a user-defined function (UDF), which is a [!INCLUDE tsql] or common language runtime (CLR) routine. A user-defined function accepts parameters, performs an action such as a …