Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Simplify 2 selects
Message
De
19/01/2007 14:05:31
 
 
À
19/01/2007 13:51:53
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01187112
Message ID:
01187133
Vues:
37
>Anybody know if the following code could be simplified?
>
>select dist site_id from training into cursor crstemp
>select dist reccount() as sitesrepresented from crstemp into array aSitesRepresented
>
>
>The need is to get a single number that will be used in a report. The above works and the array appears to be global, but I was not overly comfortable with the solution.
>
>Thanks
select dist site_id from training into cursor crstemp_1 order by site_id
select recno() as Id, site_id from crstemp_1 into cursor crstemp order by 1
Gregory
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform