LOWER() converts all characters in a string to lowercase. It is the opposite of the UPPER() function. This function is useful for case-insensitive string comparisons, data normalization, and text formatting.
LOWER(string)
LOWER() returns a character string
LOWER("APPLES") = "apples" (all uppercase to lowercase)
LOWER("Apples and Oranges") = "apples and oranges" (mixed case to lowercase)
LOWER("Hello World!") = "hello world!" (preserves non-alphabetic characters)
LOWER("123") = "123" (numbers unchanged)
LOWER("") = "" (empty string)
LOWER(NULL) = NULL (NULL input)
LOWER("SQL") = "sql" (acronyms converted)