About 2,010 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 integration …

  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 return a …

  3. 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, the …

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

  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. CREATE FUNCTION - docs.oracle.com

    Use the CREATE FUNCTION statement to create a standalone stored function or a call specification. A stored function (also called a user function or user-defined function) is a set of PL/SQL statements …

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

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

  9. CREATE FUNCTION - Transact-SQL Reference Documentation

    Creates a user-defined function, which is a saved Transact-SQL routine that returns a value. User-defined functions cannot be used to perform a set of actions that modify the global database state. …

  10. CREATE FUNCTION (SQL scalar, table, or row) - IBM

    The CREATE FUNCTION (SQL scalar, table, or row) statement is used to define a user-defined SQL scalar, table, or row function.