✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
SELECT c.CustomerID, COUNT(*) AS TotalOrdenes
FROM Sales.Customer c
INNER JOIN Sales.SalesOrderHeader h
ON c.CustomerID = h.CustomerID
GROUP BY c.CustomerID;
¿Qué representa el resultado de esta consulta?