Open universalmind303 opened 1 day ago
I want to coalesce a bunch of exprs to get the first non null value
df.select(daft.coalesce(col('column_1'), col('column_2'), 0))
select coalesce(column_1, column_2, 0) from df;
No response
No
Is your feature request related to a problem?
I want to coalesce a bunch of exprs to get the first non null value
Describe the solution you'd like
py
sql
Describe alternatives you've considered
No response
Additional Context
No response
Would you like to implement a fix?
No