LOWER
Takes a string value and returns a VARCHAR value converted to lowercase.
	Takes a string value and returns a VARCHAR value converted to lowercase.
Behavior type
stableSyntax
LOWER ( expression )
Arguments
- expression
- CHAR or VARCHAR string to convert, where the string width is ≤ 65000 octets.
ImportantIn practice, expressionshould not exceed 32,500 octets. LOWER does not use the locale's collation setting—for example,collation=binary—to identify its encoding; rather, it treats the input argument as a UTF-8 encoded string. The UTF-8 representation of the input value might be double its original width. As a result, LOWER returns an error if the input value exceeds 32,500 octets.Note also that if expressionis a table column, LOWER calculates its size from the column's defined width, and not from the column data. If the column width is greater than VARCHAR(32500), Vertica returns an error.
Examples
=> SELECT LOWER('AbCdEfG');
  LOWER
---------
 abcdefg
(1 row)
=> SELECT LOWER('The Bat In The Hat');
       LOWER
--------------------
 the bat in the hat
(1 row)
=> SELECT LOWER('ÉTUDIANT');
  LOWER
----------
 étudiant
(1 row)