Show TOC

Database Function Call (dbfunction_call)Locate this document in the navigation structure

Use

A database function is called ( dbfunction_call) in the same way as a function. The database function is created by executing a CREATE FUNCTION statement.

Structure
				
<dbfunction_call>::=
  <dbfunction_name>([<expression>,...])
			

Examples

SQL Tutorial, Database Functions, Functions

Explanation

The current database user must have the authorization to execute the database function ( EXECUTE privilege).