isnull is a function Replaces NULL with the specified value. example declare @qty int set @qty = null select ISNULL (@qty,0) -- replace qty with 0 result : 0 IS NULL : is operator to check whether a specified expression is NULL in sql statements SELECT id, Name FROM emp WHERE name IS NULL