Book Contents

Book Index

Next Topic

Home

UPPER

UPPER returns a VARCHAR value containing the argument converted to upper case letters.

Syntax

UPPER ( expression )

Semantics

 

expression

(CHAR or VARCHAR) is the string to convert

Examples

> SELECT UPPER('AbCdEfG');

upper

----------

ABCDEFG

(1 row)