Query totals

LadyDi

Registered User.
Local time
Yesterday, 19:18
Joined
Mar 29, 2007
Messages
894
I need a query to show me totals, but I just need the totals on one line and not an entire column of totals. Any suggestions?
 
Hello:

SELECT Sum(YourTableName.YourField2SumName) AS SumOfYourField2SumName
FROM YourTableName;

Regards
 

Users who are viewing this thread

Back
Top Bottom