Sum Mysql

//returns the total summed (non-NULL) value
SELECT SUM(working_hours) AS "Total working hours" FROM employee;   
Splendid Salmon