如何在 athena 中对字符串进行 MD5 哈希?

Raj*_*air 5 presto amazon-athena

athena 中的 MD5 哈希函数不适用于字符串。但是,雅典娜的文档表明确实如此:https ://docs.aws.amazon.com/redshift/latest/dg/r_MD5.html

不知道我在这里缺少什么。如果我将 varchar 转换为 varbinary,则生成的哈希值不正确。

收到此错误:


SYNTAX_ERROR: line 1:8: Unexpected parameters (varchar(15)) for function md5. Expected: md5(varbinary)

This query ran against the "temp" database, unless qualified by the query. Please post the error message on our forum or contact customer support with Query Id: dd959e8a-7fa4-4170-8895-ce7cf58be6ea.```
Run Code Online (Sandbox Code Playgroud)

The*_*heo 11

md5Athena/Presto 中的函数采用二进制输入。您可以使用以下函数将字符串转换为 varbinary to_utf8

SELECT md5(to_utf8('hello world'))
Run Code Online (Sandbox Code Playgroud)