Which is quicker COALESCE OR ISNULL?

前端 未结 6 861
忘了有多久
忘了有多久 2020-12-01 23:20

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

6条回答
  •  萌比男神i
    2020-12-01 23:58

    ISNULL will be faster i think because it has lesser function/code implementation for itself making it faster than COALESCE

提交回复
热议问题