Answers for "sql select statement Replace 0 with null"

SQL
1

replace null with 0 in sql

SELECT IFNULL(Price, 0) FROM Products;
SELECT COALESCE(Price, 0) FROM Products;
-- Oracle (extra):
SELECT NVL(Price, 0) FROM Products;
Posted by: Guest on April-23-2021

Code answers related to "sql select statement Replace 0 with null"

Code answers related to "SQL"

Browse Popular Code Answers by Language