I have seen in some projects to use COALESCE like this:
COALESCE( [MaterialType], 'ROH')
This expression COALESCE([field], constant) is equivalent to use the ISNULL() function, except for the nullability of both expressions.
My question is:
Is the performance of COALESCE([field], constant) better than ISNULL()?
Thank you