User-defined functions are not invoked with the CALL statement, but are used in the same manner that built-in functions are. For example, the following statement uses the FullName function to retrieve the names of employees:
List the names of all employeesIn Interactive SQL, type the following:
SELECT FullName( GivenName, Surname ) AS Name FROM Employees; |
The following results appear:
| Name |
|---|
| Fran Whitney |
| Matthew Cobb |
| Philip Chin |
| Julie Jordan |
| ... |
Notes
See also![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |