snowflake.snowpark.DataFrame.except_¶
- DataFrame.except_(other: DataFrame) DataFrame[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.23.0/src/snowflake/snowpark/dataframe.py#L2083-L2115)¶
- Returns a new DataFrame that contains all the rows from the current DataFrame except for the rows that also appear in the - otherDataFrame. Duplicate rows are eliminated.- Example: - >>> df1 = session.create_dataframe([[1, 2], [3, 4]], schema=["a", "b"]) >>> df2 = session.create_dataframe([[1, 2], [5, 6]], schema=["c", "d"]) >>> df1.subtract(df2).show() ------------- |"A" |"B" | ------------- |3 |4 | ------------- - minus()and- subtract()are aliases of- except_().- Parameters:
- other – The - DataFramethat contains the rows to exclude.