Files
doris/docs/documentation/cn/sql-reference/sql-functions/string-functions/lower.md
xy720 4c2a3d6da4 Merge Help document to documentation (#1586)
Help document collation (integration of help and documentation documents)
2019-08-07 21:31:53 +08:00

279 B

lower

description

Syntax

INT lower(VARCHAR str)

将参数中所有的字符串都转换成小写

example

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

##keyword LOWER