Hi there,
the following query retrieves the Top 20 values of "Mcap":
How do I have to modify the code so that I get the sum of the Top 20 values of Mcap?
Thank you for your help...
Diana
the following query retrieves the Top 20 values of "Mcap":
Code:
SELECT TOP 20 D.Mcap
FROM Data as D
WHERE ...
ORDER BY Mcap DESC
How do I have to modify the code so that I get the sum of the Top 20 values of Mcap?
Thank you for your help...
Diana