ORACLE - String Functions : length

The length function returns the length of the specified string.

The syntax is:

length( string )

string is the string to return the length for.
If string1 is NULL, then the function returns NULL.

For example:

length('Hola Mundo') would return 10.
length('') would return NULL.

No hay comentarios: