I understand the difference between these functions but my question is when checking for a single null value would ISNULL be any quicker than using COALESCE?
e.g
COALESCE(SELECT TOP 1 SomeValue FROM SomeTable, 0)
vs
ISNULL(SELECT TOP 1 SomeValue FROM SomeTable, 0)