Overview
The LOWER() function returns a given string, an expression, or values in a column in all lowercase letters. The syntax of the function is illustrated below:We support Unicode so that the ß is equivalent to the string ss.
Examples
#Case 1: Basic LOWER()
function
The following basic query converts the given string in all lowercase alphabets:
#Case 2: LOWER()
function using columns
Let’s see how the LOWER()
function works using an example with columns. We have a personal_details table containing columns id, first_name, last_name, and gender of retail store employees.