📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

LOWER



Returns a string with all characters changed to lowercase.

Syntax

LOWER(<str>)

Aliases

Return Type

VARCHAR

Examples

SELECT LOWER('Hello, DataLake!'), LCASE('Hello, DataLake!'); ┌───────────────────────────────────────────────────────┐ │ lower('hello, datalake!') │ lcase('hello, datalake!') │ ├───────────────────────────┼───────────────────────────┤ │ hello, datalake! │ hello, datalake! │ └───────────────────────────────────────────────────────┘

Was this page helpful?