powered by
Returns the left-hand side if not NULL, otherwise the right-hand side
null_coalesce(lhs, rhs)
lhs if not NULL, otherwise rhs
Left-hand side value
Right-hand side value (default/fallback)
null_coalesce(5, 10) null_coalesce(NULL, 10)
Run the code above in your browser using DataLab