Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 327 Bytes

File metadata and controls

26 lines (18 loc) · 327 Bytes

lcase

description

Syntax

VARCHAR lcase(VARCHAR str)

该函数与lower一致,将参数字符串转换为小写形式

example

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

keyword

LCASE