snowflake.snowpark.functions.soundex¶ snowflake.snowpark.functions.soundex(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/functions.py#L2679-L2689)¶ Returns a string that contains a phonetic representation of the input string. Example::CopyExpand>>> df = session.create_dataframe(["Marsha", "Marcia"], schema=["V"]).select(soundex(col("V"))) >>> df.collect() [Row(SOUNDEX("V")='M620'), Row(SOUNDEX("V")='M620')] Show lessSee moreScroll to top