snowflake.snowpark.functions.soundex¶ snowflake.snowpark.functions.soundex(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L2900-L2910)¶ 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