|
Sybernet / Supplied Functions Reference
Release 3.00 Oct 14, 2002 |
|
This function converts someone's name into the proper upper and lower case letters.
FUNCTION SP_SIGNATURE
(
BUFFER VARCHAR2
)
RETURN VARCHAR2;
| Parameter | Description |
|---|---|
buffer |
The name that is to be cased. |
A string with the first letter upper-cased.
The following example illustrates how to call sp_signature.
select sp_signature('DENIS D. WORKMAN') from dual
-------------------------------------------------
Denis D. Workman