SQL2K increased function of the Sqlbook help

Source: Internet
Author: User
Tags date define insert modify query rowcount scalar stmt
CREATE FUNCTION
Creates a user-defined function that 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 state of the global database. As with system functions, user-defined functions can be invoked from a query. It can also be executed as a stored procedure through an EXECUTE statement.

The user-defined function is modified with ALTER function and is dropped with the drop function.

Grammar
Scalar functions

CREATE FUNCTION [owner_name.] Function_name
([{@parameter_name [as] scalar_parameter_data_type [= default]} [,... N]])

RETURNS Scalar_return_data_type

[With < function_option> [[,] ... n]]

[As]

BEGIN
Function_body
Return scalar_expression
End

Inline table-valued functions

CREATE FUNCTION [owner_name.] Function_name
([{@parameter_name [as] scalar_parameter_data_type [= default]} [,... N]])

RETURNS TABLE

[With < Function_option > [[,] ... n]]

[As]

return [(] select-stmt [)]

Multi-statement table-valued function

CREATE FUNCTION [owner_name.] Function_name
([{@parameter_name [as] scalar_parameter_data_type [= default]} [,... N]])

RETURNS @return_variable TABLE < table_type_definition >

[With < Function_option > [[,] ... n]]

[As]

BEGIN
Function_body
Return
End

< Function_option >:: =
{Encryption | Schemabinding}

< table_type_definition >:: =
({column_definition | table_constraint} [,... n])


Parameters
Owner_name

The name of the user ID that owns the user-defined function. The owner_name must be an existing user ID.

Function_name

The name of the user-defined function. The function name must conform to the rules of the identifier, which must be unique to its owner in the database.

@parameter_name

The parameters of the user-defined function. You can declare one or more parameters in the CREATE FUNCTION statement. A function can have up to 1,024 parameters. The value of each declared parameter must be specified by the user when the function executes, unless the default value of the parameter is already defined. If the parameter of a function has a default value, the default keyword must be specified in order for the function to be invoked. This behavior differs from the parameter that has a default value in the stored procedure, and omitting the parameter in the stored procedure also means using the default value.

Use the @ symbol as the first character to specify the parameter name. Parameter names must conform to the rules for identifiers. The arguments for each function are used only for the function itself, and the same parameter names can be used in other functions. Parameters can only be substituted for constants, not for table names, column names, or other database object names.

Scalar_parameter_data_type

The data type of the parameter. All scalar data types, including bigint and sql_variant, can be used as parameters for user-defined functions. Timestamp data types and user-defined data types are not supported. Non-scalar types (such as cursor and table) cannot be specified.

Scalar_return_data_type

is the return value of a scalar user-defined function. Scalar_return_data_type can be any of the scalar data types supported by SQL Server (except text, ntext, image, and timestamp).

Scalar_expression

Specifies the scalar value returned by a scalar function.

TABLE

Specifies that the return value of a table-valued function is a table.

In an inline table-valued function, the table return value is defined by a single SELECT statement. The inline function has no associated return variable.

In a multiple-statement table-valued function, @return_variable is a table variable that is used to store and accumulate rows that should be returned as function values.

Function_body

Specifies the values of a series of Transact-SQL statement-defined functions that together do not produce side effects. Function_body is used only for scalar functions and multiple statement table-valued functions.

In scalar functions, Function_body is a series of Transact-SQL statements that combine to obtain a scalar value.

In a multiple-statement table-valued function, Function_body is a series of Transact-SQL statements that populate a table return variable.

Select-stmt

is a single SELECT statement that defines the return value of an inline table-valued function.

Encryption

Indicates that SQL Server encrypts the system table columns that contain the text of the CREATE FUNCTION statement. Use encryption to avoid publishing functions as part of SQL Server replication.

Schemabinding

Specifies that the function is bound to the database object it references. If the function was created with the schemabinding option, you cannot change (using the ALTER statement) or drop (use the DROP statement) the database object referenced by the function.

The binding relationship of a function to its referenced object is only lifted if one of the following two situations occurs:

Removed the function.


The function was changed (using the ALTER statement) without specifying the SCHEMABINDING option.
A function can be bound to a schema only if the following conditions are true:

The user-defined functions and views referenced by the function are also bound to the schema.


The object referenced by the function is not referenced by a two-part name.


The function and its referenced objects belong to the same database.


The user executing the CREATE function statement has REFERENCES permissions on all database objects referenced by the function.
If you do not meet the above criteria, the CREATE FUNCTION statement that specifies the SCHEMABINDING option will fail.

Comments
A user-defined function is a scalar-valued function or a table-valued function. If the RETURNS clause specifies a scalar data type, the function is a scalar-valued function. You can use multiple Transact-SQL statements to define scalar-valued functions.

If the RETURNS clause specifies table, the function is a table-valued function. According to the definition of function body, table-valued function can be divided into inline function or multiple-statement function.

If the table specified by the RETURNS clause does not contain a list of columns, the function is an inline function. An inline function is a table-valued function defined using a single SELECT statement that forms the body of a function. The column of the table returned by the function, including the data type, from the Select column of the SELECT statement that defines the function
Table.

If the table type specified by the RETURNS clause has a column and its data type, the function is a multiple-statement table-valued function.

The following statement is allowed in the body of a multiple-statement function. Statements that are not listed in the following list cannot be used in the body of a function.

An assignment statement.


Control flow statements.


DECLARE statement that defines the data variables and cursors for the local function.


SELECT statement, which contains a selection list with an expression that assigns a value to a function's local variable.


A cursor operation that references a local cursor declared, opened, closed, and disposed in a function. Only fetch statements that use an INTO clause to assign values to a local variable are allowed, and FETCH statements that return data to the client are not allowed.


INSERT, UPDATE, and DELETE statements, which modify the local table variables of the function.


The EXECUTE statement invokes the extended stored procedure.
Deterministic and side effects of functions
The function can be either determined or indeterminate. If the result is always the same when the function is invoked with a specific set of input values, the functions are determined. If you use the same set of specific input values each time the function is invoked, and the results returned are always different, the functions are indeterminate.

An indeterminate function can have a side effect. Side effects are changing some of the global state of the database, such as updating a database table or some external resources, such as a file or network (for example, modifying a file or sending an e-mail message).

Built-in indeterminate functions in the body of a user-defined function are not allowed;

@ @CONNECTIONS @ @TOTAL_ERRORS
@ @CPU_BUSY @ @TOTAL_READ
@ @IDLE @ @TOTAL_WRITE
@ @IO_BUSY GETDATE
@ @MAX_CONNECTIONS getUTCDate
@ @PACK_RECEIVED NEWID
@ @PACK_SENT RAND
@ @PACKET_ERRORS TEXTPTR
@ @TIMETICKS


Although indeterminate functions are not allowed in the body of a user-defined function, these user-defined functions can still have side effects when calling an extended stored procedure.

Because extended stored procedures can have side effects on the database, the function that invokes the extended stored procedure is indeterminate. When a user-defined function call extends stored procedures that have side effects on the database, do not expect the result set to remain consistent or perform functions.

Calling an extended stored procedure from a function
Extended stored procedures cannot return a result set to the client when called from within the function. Any ODS APIs that return a result set to the client will return FAIL. Can the extended stored procedure be connected back to Microsoft? SQL Server?; however, it should not attempt to join the same transaction as the function that invoked the extended stored procedure.

Similar to wake-up calls from batches or stored procedures, does the extended stored procedure run SQL Server's Windows? Execution in the context of the security account. The owner of the stored procedure should consider this when granting user EXECUTE privileges.

Function call
Scalar-valued functions can be invoked at locations where scalar expressions can be used, including computed columns and CHECK constraint definitions. When invoking a scalar-valued function, you should at least use the two-part name of the function.

[database_name.] Owner_name.function_name ([argument_expr][,...])

If a user-defined function is used to define a computed column, the certainty of that function also determines whether the index can be created on the computed column. You can create an index on a computed column that uses the function only if the function is deterministic. If the function always returns the same value when the input is the same, the function is deterministic.

You can invoke a table-valued function by using a name that is part of it.

[database_name.] [Owner_name.] Function_name ([argument_expr][,...])

For Microsoft? SQL Server? The system table function contained in 2000, which needs to precede the function name with the prefix "::".

SELECT *
From:: Fn_helpcollations ()

Transact-SQL errors that cause the statement to stop executing and then continue from the next statement in the stored procedure are handled differently in the function. In a function, this type of error causes the function to stop executing. This in turn causes the statement that invokes the function to stop executing.

Permissions
The user should have the CREATE FUNCTION permission to execute the CREATE FUNCTION statement.

The permissions for the CREATE FUNCTION are granted by default to members of the sysadmin fixed server role and the db_owner and db_ddladmin fixed database roles.
Members of the sysadmin and db_owner can grant CREATE FUNCTION permissions to other logins using the GRANT statement.

The owner of the function has EXECUTE permission on its function. Other users do not have execute permission unless they are granted execute permission on a specific function.

To create or change tables that reference user-defined functions in CONSTRAINT, DEFAULT clauses, or computed column definitions, users must also have REFERENCES permissions on these functions.

Example
A. Scalar-valued user-defined functions for the calculation of the ISO week
In the following example, the user-defined function Isoweek takes the date parameter and calculates the ISO week number. In order to correctly evaluate the function, you must invoke SET Datefirst 1 before calling the function.

CREATE FUNCTION Isoweek (@DATE datetime)
RETURNS int
As
BEGIN
DECLARE @ISOweek int
SET @ISOweek = DATEPART (wk, @DATE) +1
-datepart (Wk,cast (DATEPART (yy, @DATE) as CHAR (4)) + ' 0104 ')
--special Cases:jan 1-3 may belong to the previous year
IF (@ISOweek =0)
SET @ISOweek =dbo. Isoweek (DATEPART (yy, @DATE)-1
As char (4)) + ' + ' + CAST (24+datepart (Day, @DATE) as char (2)) +1
--special Case:dec 29-31 may belong to the next year
IF (DATEPART (mm, @DATE) =12) and
((DATEPART (DD, @DATE)-datepart (DW, @DATE)) >= 28))
SET @ISOweek =1
Return (@ISOweek)
End

The following is a function call. Note that the Datefirst is set to 1.

SET Datefirst 1
SELECT master.dbo.ISOweek (' 12/26/1999 ') as ' ISO Week '
The following is the result set.

ISO Week
----------------
52

B. Inline table-valued functions
The following example returns an inline table-valued function.

Use pubs
Go
CREATE FUNCTION SalesByStore (@storeid varchar (30))
RETURNS TABLE
As
Return (SELECT title, Qty
From sales s, titles T
WHERE s.stor_id = @storeid and
t.title_id = s.title_id)

C. Multi-statement table-valued function
Suppose you have a table that represents the following hierarchical relationships:

CREATE TABLE Employees (Empid nchar (5) PRIMARY KEY,
EmpName nvarchar (50),
Mgrid nchar (5) REFERENCES Employees (EMPID),
Title nvarchar (30)
)

The table-valued function, Fn_findreports (INEMPID), has a given employee ID that returns a table that corresponds to all employees who report directly or indirectly to a given employee.
This logic cannot be represented in a single query, but it can be implemented as a user-defined function.

CREATE FUNCTION fn_findreports (@InEmpId nchar (5))
RETURNS @retFindReports TABLE (empid nchar (5) Primary key,
EmpName nvarchar (m) not NULL,
Mgrid nchar (5),
Title nvarchar (30))
/*returns a result set this lists all the employees who-given
Employee directly or indirectly.*/
As
BEGIN
DECLARE @RowsAdded int
--table variable to hold accumulated results
DECLARE @reports TABLE (empid nchar (5) Primary key,
EmpName nvarchar (m) not NULL,
Mgrid nchar (5),
Title nvarchar (30),
Processed tinyint default 0)
--Initialize @Reports with direct Reports of the given employee
INSERT @reports
SELECT Empid, EmpName, Mgrid, title, 0
From Employees
WHERE Empid = @InEmpId
SET @RowsAdded = @ @rowcount
--While new employees were added in the previous iteration
While @RowsAdded > 0
BEGIN
/*mark all employee records whose direct reports are going to be
Found in the iteration with processed=1.*/
UPDATE @reports
SET processed = 1
WHERE processed = 0
--Insert employees who employees marked 1.
INSERT @reports
SELECT e.empid, E.empname, E.mgrid, E.title, 0
From Employees E, @reports R
WHERE e.mgrid=r.empid and E.mgrid <> e.empid and r.processed = 1
SET @RowsAdded = @ @rowcount
/*mark all employee records whose direct reports have been
In this iteration.*/
UPDATE @reports
SET processed = 2
WHERE processed = 1
End

--Copy to the result of the function the required columns
INSERT @retFindReports
SELECT Empid, EmpName, Mgrid, title
From @reports
Return
End
Go

--Example invocation
SELECT *
From Fn_findreports (' 11234 ')
Go


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.