This function returns the bit length of a string. If only ASCII characters are used, then this function is equivalent to CHARACTER_ LENGTH * 8.
bit_length::=
SELECT BIT_LENGTH('aou') BIT_LENGTH;SELECT BIT_LENGTH('äöü') BIT_LENGTH;