Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Calc totals w/i SQL SELECT
Message
From
13/06/1997 21:32:36
 
 
To
13/06/1997 17:21:05
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00036312
Message ID:
00036343
Views:
57
> I have a table that is structured as such. > > code (c) > amount_in (n) > amount_out (n) > status (l) > > I'd like to get totals grouped by code and sum amount_in when status=.f. > (if status=.t. don't sum amount_in value) and sum amount_out when > status=.t. (if status=.f. don't sum amount_out value). > > I would also like to cnt the total number of amount_in and amount_out > records using the same logic I used with sum. SELECT CODE, ; count(iif(status,1,0)) as in_cnt, ; count(iif(status,0,1)) as out_cnt, ; sum(iif(status,0,amount_in)) as in_sum, ; sum(iif(status,amount_out,0)) as out_sum ; FROM {yourtable} ; ORDER BY 1 GROUP BY 1 Hopefully this'll do the trick for you. /Paul
Paul Russell
EMail: prussell@fox.nstn.ca
Phone: (902) 499-5043
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform