Is the a way to combine below into one update?
update #Equential_LaborHrsDetailTable
set eq_equipment_name = ' ', eq_equipment_id = ' '
where eq_equipment_id is null
update #Equential_LaborHrsDetailTable
set eq_employee_hours = 0
where eq_employee_hours is Null
update #Equential_LaborHrsDetailTable
set eq_equipment_hours = 0
where eq_equipment_hours is Null
update #Equential_LaborHrsDetailTable
set eq_equipment_name = ' ', eq_equipment_id = ' '
where eq_equipment_id is null
update #Equential_LaborHrsDetailTable
set eq_employee_hours = 0
where eq_employee_hours is Null
update #Equential_LaborHrsDetailTable
set eq_equipment_hours = 0
where eq_equipment_hours is Null