SQL ISNULL(), NVL(), IFNULL() and COALESCE() Functions
SQL Server The SQL ServerISNULL()function lets you return an alternative value when an expression is NULL: SELECTProductName, UnitPrice * (UnitsInStock + ISNULL(UnitsOnOrder,0)) FROMProducts; or we can use theCOALESCE()function, like this: ...