Converts a string to lowercase.
Category: | String |
Returned data type: | String |
LOWER(source)
source
a string; this can be specified as string constant, field name, or expression
Note: If the source is NULL, the function returns a NULL value.
source = "MÜNCHEN in Germany"
lowcase_string = lower(source) // outputs "münchen in germany"