SQL LOWER Function

Example

Convert the text to lower-case:

SELECT LOWER('SQL Tutorial is FUN!');

Definition and Usage

The LOWER() function converts a string to lower-case.

Note: Also look at the UPPER() function.

Syntax

LOWER(text)

Continue reading SQL LOWER Function