SELECT SUM(s1.`employ_hours`) as `hours`, s2.`employ_pay` as `rate`, (`hours` * `rate`) AS `pay`
FROM `hours` s1
LEFT JOIN `employ` s2
ON s1.`employ_id` = s2.`id`
WHERE s1.`employ_hours` = 1
AND s2.`employ_pay` = 1
GROUP BY `employ_id` WITH ROLLUP
Now, that's if you have the table hours with a field employ_id which is the value in the table employ column id. Otherwise, there's no real way to "map" from one table to the other, and your data is useless since rate wouldn't be able to be associated to the employee.
The "WITH ROLLUP" will add an extra row with the sum off all of the data for that employee id. Not sure if it would work, but it's worth a shot.
I merged these as there's no reason to be having the same discussion in two different places 🙁 Please don't cross post.