Get a list of employees with the highest total hours worked.
SELECT e.employee_name, SUM(e.total_hours) as total_hours_worked FROM (SELECT employee_id, SUM(hours_worked) as total_hours FROM employee_fixedhours UNION ALL SELECT employee_id, SUM(hours_worked) as total_hours FROM employee_variablehours) e GROUP BY e.employee_name ORDER BY total_hours_worked DESC
Connect 300+ sources, serve any BI tool, and give every AI agent one governed endpoint to read, and write back where the app supports it.