sharkchaser
Technical User
If I pull out the WHERE clause this works well.
What I need is to filter by the WHERE clause and ORDER BY Volume DESC.
SELECT listofficename, sum(closeprice) AS VOLUME
FROM tblCARETSdata
WHERE Volume > '10000'
GROUP BY listofficename ;
I'm trying to figure this out from "Simply SQL" but I'm missing something here.
Thanks.
Rick
What I need is to filter by the WHERE clause and ORDER BY Volume DESC.
SELECT listofficename, sum(closeprice) AS VOLUME
FROM tblCARETSdata
WHERE Volume > '10000'
GROUP BY listofficename ;
I'm trying to figure this out from "Simply SQL" but I'm missing something here.
Thanks.
Rick