Oracle9i SQL Reference
Release 1 (9.0.1)

Part Number A90125-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to beginning of chapter Go to next page

Functions, 81 of 166


NLS_UPPER

Syntax

nls_upper::=


Text description of functions22a.gif follows
Text description of nls_upper

Purpose

NLS_UPPER returns char, with all letters uppercase.

Both char and nlsparam can be any of the datatypes CHAR, VARCHAR2, NCHAR, NVARCHAR2, CLOB, or NCLOB. The string returned is of VARCHAR2 datatype and is in the same character set as char.

The nlsparam can have the same form and serve the same purpose as in the NLS_INITCAP function.

Example

The following example returns a string with all the letters converted to uppercase:

SELECT NLS_UPPER ('große') "Uppercase"
     FROM DUAL;

Upper
-----
GROßE

See Also:

NLS_INITCAP 


Go to previous page Go to beginning of chapter Go to next page
Oracle
Copyright © 1996-2001, Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback