Answers for "replace value with null sql"

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
1

replace null in sql

CASE WHEN ColumnName IS NULL THEN 'anyText' 
ELSE ColumnName END 
---------EXAMPLE --------------------------
SELECT E.Name as Employee, CASE WHEN M.Name IS NULL THEN 'No Manager' 
   ELSE M.Name END as Manager
FROM  tblEmployee E
LEFT JOIN tblEmployee M
ON   E.ManagerID = M.EmployeeID
Posted by: Guest on August-20-2021

Code answers related to "replace value with null sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language