Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Calc totals w/i SQL SELECT
Message
 
À
13/06/1997 17:21:05
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00036312
Message ID:
00036343
Vues:
55
> 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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform