Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
VFP: Report Wizard
Message
De
10/01/2000 23:34:09
Cindy Winegarden
Duke University Medical Center
Durham, Caroline du Nord, États-Unis
 
 
À
10/01/2000 22:23:09
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00315940
Message ID:
00315972
Vues:
29
Ralf,

You need an inner join. You can read about this in SELECT - SQL. You may need to make your own query rather than using the query from the wizard, though you can use the report from the wizard.

SELECT Father.*, Son.* ;
FROM Father INNER JOIN Son ON Father.Key = Son.Key ;
ORDER BY Whatever

- OR -

SELECT Father.*, Son.* ;
FROM Father, Son ;
WHERE Father.Key = Son.Key ;
ORDER BY Whatever


>Hi,
>
>I have tried using report wizard to list one-to-many data. It is OK but it will also list those father records with no son. Is it possible to list records with sons only?
>
>Regards
>Ralf
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform