LENGTH
Last updated
Last updated
Returns the length of a given string.
LENGTH(STRING)
STRING
Type: string
A sequence of characters.
Type: bigint
The length of STRING
in characters.
1
1
abcdefg
7
12345
5
null
null
''
0
-=^%$
5
CREATE JOB function_operator_example
ADD_MISSING_COLUMNS = true
AS INSERT INTO default_glue_catalog.upsolver_samples.orders_transformed_data
MAP_COLUMNS_BY_NAME
SELECT
customer_firstname,
LENGTH(customer_firstname) AS name_length
FROM default_glue_catalog.upsolver_samples.orders_raw_data
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 3;
Karen
5
Evelyn
6
Carol
5