Home
The LENGTH function returns the number of characters in the arithmetic_expression.
This example returns the number of characters in the name of products that weigh less than 15 lbs.
SELECT LENGTH (Name)FROM PRODUCTSWHERE Weight < 15.00
CHAR_LENGTH
Product: 4D Theme: Functions
4D SQL Reference ( 4D v16)