SELECT IFNULL(Price, 0) FROM Products; SELECT COALESCE(Price, 0) FROM Products; -- Oracle (extra): SELECT NVL(Price, 0) FROM Products;