DRAFT

Omnidex SQL Function: LOWER

Description

Converts a string to all lower case characters.

Syntax

LOWER( <column_spec | "string"> )

Example

Example 1

select
LOWER (contact) as low
from customers where state = 'co'

low
-------------------------

john doe
jane johnson
jim smith
 
Back to top
dev/sql/functions/lower.txt ยท Last modified: 2012/10/26 14:28 (external edit)