This is an old revision of the document!


DRAFT

Omnidex SQL Function: UPPER

Description

Converts a string to all upper case characters.

Syntax

UPPER(string)

string

Required. The character string that is to be upshifted.

Example

Example 1

SELECT
LOWER (contact) AS low, UPPER(contact) AS up
FROM customers WHERE state = 'co'
 
Back to top
dev/sql/functions/upper.1259974259.txt.gz ยท Last modified: 2016/06/28 22:38 (external edit)