Skip to main content
Version: Latest-3.2

lcase

Description

This function converts a string to lower-case. It is analogous to the function lower.

Syntax

VARCHAR lcase(VARCHAR str)

Examples

mysql> SELECT lcase("AbC123");
+-----------------+
|lcase('AbC123') |
+-----------------+
|abc123 |
+-----------------+

keyword

LCASE