ifnull
Returns col2 if col1 is null, or col1 otherwise.
For the corresponding Databricks SQL function, see ifnull function.
Syntax
Python
from pyspark.databricks.sql import functions as dbf
dbf.ifnull(col1=<col1>, col2=<col2>)
Parameters
Parameter | Type | Description |
|---|---|---|
|
| The first column to check. |
|
| The value to return if col1 is null. |
Examples
Python
from pyspark.databricks.sql import functions as dbf
df = spark.createDataFrame([(None,), (1,)], ["e"])
df.select(dbf.ifnull(df.e, dbf.lit(8))).show()
Output
+------------+
|ifnull(e, 8)|
+------------+
| 8|
| 1|
+------------+