description |
---|
Returns the character length of the input string. |
- expression: The expression (VARCHAR) to determine character length for.
Examples
{% code title="CHAR_LENGTH example" %}
SELECT CHAR_LENGTH('get the char length')
-- 19
{% endcode %}
{% code title="CHAR_LENGTH example" %}
SELECT CHAR_LENGTH('SPICE')
-- 5
{% endcode %}