snowflake.snowpark.functions.md5_number_upper64¶
- snowflake.snowpark.functions.md5_number_upper64(msg: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the upper 64 bits of the MD5 hash of the input message as a number.
- Parameters:
msg (ColumnOrName) – The input message to hash.
- Returns:
A column containing the upper 64 bits of the MD5 hash as a number.
- Return type:
- Examples::