Files
doris/docs/documentation/en/sql-reference/sql-functions/string-functions/length_EN.md
2019-08-30 22:07:24 +08:00

525 B

length

Description

Syntax

'INT length (VARCHAR str)'

Returns the length of the string and the number of characters returned for multi-byte characters. For example, five two-byte width words return a length of 10.

example

mysql> select length("abc");
+---------------+
length ('abc') 1244;
+---------------+
|             3 |
+---------------+

mysql> select length("中国");
+------------------+
| length('中国')   |
+------------------+
|                6 |
+------------------+

##keyword LENGTH