Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Find problematic guarantors
Message
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Find problematic guarantors
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
01143879
Message ID:
01143879
Vues:
45
Hi everybody,

I'd like to find all cases where I have only one guarantor per trans and this guarantor (in Trans_Relateds table) has iGuarantor_Flag = 1, but iPrimary_Flag = 0.

For some reason, it looks to me what my SQL is wrong.
select max(cClient_Account_Number) as cClient_Account_Number, ;
			min(TR.cTrans_Relateds_Pk) as cTrans_Relateds_Pk, ;
			count(*) as cntGuarantors from Trans inner join Trans_Relateds TR on ;
			Trans.cTrans_pk = TR.cTrans_fk ;
			where TR.iGuarantor_flag = 1 and TR.iPrimary_flag = 0 ;
			group by Trans.cTrans_pk having cntGuarantors = 1 ;			
			into cursor curProblems		
Can you tell me, if I'm wrong and how should I re-write this SQL?

Thanks a lot in advance.
If it's not broken, fix it until it is.


My Blog
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform