CHAR_LENGTH

4D - Documentation   Français   English   German   Japanese   4D SQL Reference, Table of Contents   4D SQL Reference, Index   Back   Previous   Next

version 11


CHAR_LENGTH (arithmetic_expression)

Description

The CHAR_LENGTH function returns the number of characters in the arithmetic_expression.

Example

This example returns the number of characters in the name of products where the weight is less than 15 lbs.

   SELECT CHAR_LENGTH (Name)
   FROM PRODUCTS 
   WHERE Weight < 15.00

See Also

LENGTH.


4D - Documentation   Français   English   German   Japanese   4D SQL Reference, Table of Contents   4D SQL Reference, Index   Back   Previous   Next