snowflake.snowpark.functions.md5_binary¶
- snowflake.snowpark.functions.md5_binary(msg: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.45.0/src/snowflake/snowpark/_functions/scalar_functions.py#L4090-L4116)¶
Returns the MD5 hash of the input message as a binary value.
- Parameters:
msg (ColumnOrName) – The input message to compute the MD5 hash for.
- Returns:
The MD5 hash as a binary value (bytearray).
- Return type:
- Examples::