Built-in Functions (Transact-SQL)
SQL Server provides many built-in functions and also lets you create user-defined functions. The categories of built-in functions are listed on this page.
Types of Functions
Function |
Description |
---|---|
Return an object that can be used like table references in an SQL statement. |
|
Operate on a collection of values but return a single, summarizing value. |
|
Return a ranking value for each row in a partition. |
|
Scalar Functions (Described below) |
Operate on a single value and then return a single value. Scalar functions can be used wherever an expression is valid. |
Scalar Functions
Function category |
Description |
---|---|
Return information about the current configuration. |
|
Support data type casting and converting. |
|
Return information about cursors. |
|
Perform operations on a date and time input values and return string, numeric, or date and time values. |
|
Perform logical operations. |
|
Perform calculations based on input values provided as parameters to the functions, and return numeric values. |
|
Return information about the database and database objects. |
|
Return information about users and roles. |
|
Perform operations on a string (char or varchar) input value and return a string or numeric value. |
|
Perform operations and return information about values, objects, and settings in an instance of SQL Server. |
|
Return statistical information about the system. |
|
Perform operations on text or image input values or columns, and return information about the value. |
Function Determinism
SQL Server built-in functions are either deterministic or nondeterministic. Functions are deterministic when they always return the same result any time they are called by using a specific set of input values. Functions are nondeterministic when they could return different results every time they are called, even with the same specific set of input values. For more information, see Deterministic and Nondeterministic Functions
Function Collation
Functions that take a character string input and return a character string output use the collation of the input string for the output.
Functions that take non-character inputs and return a character string use the default collation of the current database for the output.
Functions that take multiple character string inputs and return a character string use the rules of collation precedence to set the collation of the output string. For more information, see Collation Precedence (Transact-SQL).
See Also
Reference
CREATE FUNCTION (Transact-SQL)