SHA1

Hashes the input using SHA-1

Syntax

SHA1(input)

Arguments

NameTypeDescriptionDefault Value

input

string

Returns

string

Examples

inputOutput

'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 time_filter()
    LIMIT 1;

Query result

inputOutput

'hello world'

2aae6c35c94fcfb415dbe95f408b9ce91ee846ed

Last updated