Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL zählt alle außerhalb des Limits

SELECT
SUM(projects.hours) AS total_hours,
(SELECT SUM(projects.hours) FROM projects) AS all_hours
FROM 
projects
GROUP BY 
projects.companyID
ORDER BY total_hours DESC
LIMIT 5

Subtrahieren Sie in Ihrer Anwendung total_hours von all_hours.