How do I show NULL value = 0
SELECT
d.Date,
a.EmployeeID,
a.GivenName, a.FamilyName,
a.TeamID,
d.ShiftType, d.ShiftDuration,
b.Duration_Off,
c.OT_Duration,
(d.ShiftDuration + c.OT_Duration) - b.Duration_Off as Total_Hours
FROM
Employee a
INNER JOIN
Roster d ON a.EmployeeID = d.EmployeeID
LEFT JOIN
Leave b ON a.EmployeeID = b.EmployeeID
LEFT JOIN
Overtime c ON a.EmployeeID = c.EmployeeID
As my Duration_Off and OT_Duration might be NULL at times, how do I show 0 when it's NULL?
