R
rahmad
Hi All,
Below is the SQL Statement of my query.I sort the Fields
HEIGHT descently,But I want the query return the 10 Highest
only.
Is there some body would like to help,how to do that easyly.
SELECT HEIGHT.Name, Sum(HEIGHT.Height) AS SumOfHeight
FROM HEIGHT
GROUP BY HEIGHT.Name
ORDER BY Sum(HEIGHT.Height) DESC;
Thank's
Below is the SQL Statement of my query.I sort the Fields
HEIGHT descently,But I want the query return the 10 Highest
only.
Is there some body would like to help,how to do that easyly.
SELECT HEIGHT.Name, Sum(HEIGHT.Height) AS SumOfHeight
FROM HEIGHT
GROUP BY HEIGHT.Name
ORDER BY Sum(HEIGHT.Height) DESC;
Thank's