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'