Skip to content

LOWER

  • str: The input string for which all uppercase characters need to be converted into their lowercase equivalents.
SELECT LOWER('HELLO WORLD');
'hello world'

The LOWER() function in SQL is used to convert all letters in a text string to lowercase. In the provided example, the input string ‘HELLO WORLD’ was converted to ‘hello world’.