Syntax
$PROPER(string)
$PROPER()
Required.
string
Required. A string or scalar_expression that evaluates to
a string.
top
Example
select $proper(company), upper(company),
lower(company) from customers where company='systems'
$PROPER: Dynamic Information Systems Corporation
UPPER: DYNAMIC INFORMATION SYSTEMS CORPORATION
LOWER: dynamic information systems corporation
top
|