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