snowflake.snowpark.functions.base64_decode_string¶ snowflake.snowpark.functions.base64_decode_string(e: Union[Column, str], alphabet: Optional[str] = None) → Column[source]¶ Decodes a Base64-encoded string to a string. Example CopyExpand>>> df = session.create_dataframe(["U25vd2ZsYWtl", "SEVMTE8="], schema=["input"]) >>> df.select(base64_decode_string(col("input")).alias("decoded")).collect() [Row(DECODED='Snowflake'), Row(DECODED='HELLO')] Show lessSee moreScroll to top