LOWER

All functions > STRING > LOWER

Returns the string with all characters converted to lowercase.

Signatures

Returns: String with all characters converted to lowercase

LOWER(string: VARCHAR) → VARCHAR
sql
ParameterTypeRequiredDescription
stringVARCHARYesInput string to convert

Notes

  • Affects only alphabetic characters
  • Non-alphabetic characters remain unchanged
  • Handles Unicode characters correctly

Examples

FeatureQL
SELECT
    f1 := LOWER('HELLO WORLD'),  -- All uppercase to lowercase
    f2 := LOWER('Mixed Case String'),  -- Mixed case to lowercase
    f3 := LOWER('ABC123XYZ'),  -- Letters and numbers
    f4 := LOWER('CAFÉ'),  -- Unicode characters
    f5 := LOWER('123!@#')  -- Numbers and symbols unchanged
;
Result
f1 VARCHARf2 VARCHARf3 VARCHARf4 VARCHARf5 VARCHAR
hello worldmixed case stringabc123xyzcafé123!@#

Last update at: 2026/03/03 16:47:38
Last updated: 2026-03-03 16:48:19