Skip to content

LCASE

  • string: This parameter represents the text string that you want to convert to lowercase. The value provided should be a valid string expression.
SELECT LCASE('Hello World!');
'hello world!'

In the above example, the LCASE() function converts the text ‘Hello World!’ to lower case. The result is ‘hello world!’. The LCASE() function in MySQL is used to convert all the characters in a string to lower case.