Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select
Message
 
À
05/05/2006 13:59:43
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Titre:
Re: Select
Versions des environnements
Visual FoxPro:
VFP 6
Divers
Thread ID:
01119685
Message ID:
01119781
Vues:
16
Thanks every one for all of your hard work and help.

I was able to solve this.

This is what I need up doing:
*//Master Cursor
SELECT regno, ccstatus, ;
      IIF(Inlist(Alltrim(ccstatus),'A','P'),.T.,.F.)  as lPrnt;
      FROM cTemp;
      ORDER BY regno ;
      Into Cursor cRegno

*//Invalid
  SELECT regno from cRegno ;
 	where lPrnt = .F. ;
	Group by regno order by regno into Cursor cInvalid

*//Valid
  SELECT regno from cRegno ;
  where regno not in (select regno from cInvalid);
  Group by regno order by regno ;
  Into Cursor cValid
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform