In this PostgreSQL post explains how to use the PostgreSQL char_length function with syntax and examples.
The PostgreSQL char_length function returns the length of the specified string.
The syntax for the char_length function in PostgreSQL is:
char_length( string )
The string to return the length for.
The char_length function can be used in the following versions of PostgreSQL:
Let's look at some PostgreSQL char_length function examples and explore how to use the char_length function in PostgreSQL.
For example:
postgres=# SELECT char_length('AODBA.com');
char_length
-------------
16
(1 row)
postgres=# SELECT char_length('');
char_length
-------------
0
(1 row)
postgres=# SELECT char_length(' ');
char_length
-------------
1
(1 row)
postgres=# SELECT char_length(NULL);
char_length
-------------
NULL>
(1 row)