The LCASE()
function converts a string sent as a parameter to lowercase.
Figure 1 shows a visual representation of the LCASE()
function.
This method has the same functionality as the
LOWER()
method.
LCASE(string)
The LCASE()
function takes in a string that needs to be converted to lowercase as a parameter.
The LCASE()
function returns the lowercase version of a string sent as a parameter.
If a number is sent as a parameter,
LCASE()
returns the number unchanged.
-- stringSELECT LCASE('HELLO');-- numberSELECT LCASE(123);