Home

Getting Started

Utilities

Indexing

Omnidex

Development

Tutorials

Quick Links

 

SQL Reference

Functions

Syntax

Example

 

SQL Reference

Joins

Nested Queries

Set Operations

ON CURSOR | INSTANCE

WITH Options

Commands

Functions

 

LOWER

Converts a string to all lower case characters.

 

Syntax

LOWER(string)

string
Required. The text string that will be shifted down.

 

Example

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

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

up
-------------------------

john doe
jane johnson
jim smith

JOHN DOE
JANE JOHNSON
JIM SMITH

 

Top