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.
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.
Hüten Sie sich vor irreführenden Daten von SET STATISTICS IO
Erstellen Sie ein Set oder eine Sequenz ohne Schleifen – Teil 2
Ersetzen von SQL-Cursor durch Alternativen zur Vermeidung von Leistungsproblemen
Reporting von SQLDIAG-Leistungsdaten über das RML Utilities Tool | Fehlerbehebung bei der SQL Server-Leistung -7