BYTE_LENGTH function [String]

Function

Returns the number of bytes in a string.

Syntax

BYTE_LENGTHstring-expression )

Parameters

string-expression The string whose length is to be calculated

Example

The following statement returns the value 12:

SELECT BYTE_LENGTH( 'Test Message' ) FROM iq_dummy

Usage

Trailing white space characters are included in the length returned.

The return value of a NULL string is NULL.

If the string is in a multibyte character set, the BYTE_LENGTH value differs from the number of characters returned by CHAR_LENGTH.

Standards and compatibility

See also

“CHAR_LENGTH function [String]”

“DATALENGTH function [System]”

“LENGTH function [String]”