Questions tagged [isnull]

`ISNULL` is a proprietary SQL function that replaces NULL with the specified replacement value.

ISNULL is a SQL function that replaces NULL with the specified replacement value.

The ANSI/ISO SQL standard function COALESCE serves the same purpose, and is widely implemented.

Reference

MSDN Article

706 questions
-6
votes
1 answer

Replaces Nulls with 0 without using a function?

I want to replace null values in a table but without using a function such as isnull because its dealing with a large amount of data and slowing it down. everywhere online says isnull and coalesce but is there any way without using such functions. I…
rkyyk
  • 163
  • 2
  • 5
  • 13
1 2 3
47
48