Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
Applies to:
Databricks SQL
Databricks Runtime
Returns the character length of string data or number of bytes of binary data. This function is a synonym for character_length function and char_length function.
Syntax
length(expr)
Arguments
expr: A STRING or BINARY expression.
Returns
An INTEGER.
The length of string data includes the trailing spaces. The length of binary data includes trailing binary zeros.
Examples
> SELECT length('Spark SQL ');
10
> select length('床前明月光')
5