Example Of Lower - HP Neoview SQL Reference Manual

Hide thumbs Also See for Neoview SQL:
Table of Contents

Advertisement

Example of LOWER

Suppose that your CUSTOMER table includes an entry for Hotel Oregon. Select the column
CUSTNAME and return the result in uppercase and lowercase letters by using the UPPER and
LOWER functions:
SELECT custname,UPPER(custname),LOWER(custname)
FROM sales.customer;
(EXPR)
-----------------
...
Hotel Oregon
--- 17 row(s) selected.
See
"UPPER Function" (page
358
SQL Functions and Expressions
(EXPR)
-------------------
...
HOTEL OREGON
427).
(EXPR)
------------------
...
hotel oregon

Advertisement

Table of Contents
loading

Table of Contents