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.txt ยท Last modified: 2012/10/26 14:28 (external edit)