Skip to main content

LOWER

A case-transformation function that converts all uppercase letters in a string expression to lowercase letters.

Synopsis

LOWER(string-expression)

Arguments

Argument Description
string-expression The string expression whose characters are to be converted to lowercase. The expression can be the name of a column, a string literal, or the result of another scalar function, where the underlying data type can be represented as any character type (such as CHAR or VARCHAR).

Description

The LOWER function converts uppercase letters to lowercase for display purposes. This is the inverse of the UPPER function. LOWER has no effects on non-alphabetic characters. It leave unchanged punctuation, numbers, and leading and trailing blank spaces.

LOWER does not force a numeric to be interpreted as a string. Caché SQL converts numerics to canonical form, removing leading and trailing zeros. A numeric specified as a string is not converted to canonical form, and retains leading and trailing zeros.

The LCASE function can also be used convert uppercase letters to lowercase.

LOWER has no effect on collation. The %SQLUPPER function is the preferred way in SQL to convert a data value for not case-sensitive collation. Refer to %SQLUPPER for further information on case transformation for collation.

Examples

The following example returns each person’s name in lowercase letters:

SELECT Name,LOWER(Name) AS LowName
     FROM Sample.Person

LOWER also works on Unicode (non-ASCII) alphabetic characters, as shown in the following Embedded SQL example, which converts Greek letters from uppercase to lowercase:

  IF $SYSTEM.Version.IsUnicode() {
     SET a=$CHAR(920,913,923,913,931,931,913)
     &sql(SELECT LOWER(:a)
     INTO :b
     FROM Sample.Person)
     IF SQLCODE'=0 {WRITE !,"Error code ",SQLCODE }
     ELSE {WRITE !,a,!,b }
  }
  ELSE {WRITE "This example requires a Unicode installation of Caché"}

See Also

FeedbackOpens in a new tab