version 11
LENGTH (arithmetic_expression)
Description
The LENGTH function returns the number of characters in the arithmetic_expression.
Example
This example returns the number of characters in the name of products that weigh less than 15 lbs.
SELECT LENGTH (Name) FROM PRODUCTS WHERE Weight < 15.00
See Also