SHA1
Hashes the input using SHA-1
.
Syntax
SHA1(input)
Arguments
Name
Type
Description
Default Value
input
string
Returns
Returns a string
value.
Examples
input
Output
'hello world'
2aae6c35c94fcfb415dbe95f408b9ce91ee846ed
Transformation job example
SQL
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 input,
SHA1(input) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET input = 'hello world'
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;
Query result
input
Output
'hello world'
2aae6c35c94fcfb415dbe95f408b9ce91ee846ed
Last updated