Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Need help with a right join (I think?)
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00256837
Message ID:
00256905
Vues:
25
Roi,

The select you posted had a where clause that limited the results to ab_id 57. If you want them all then dump teh where clause;
SELECT catlink.ab_id, catagory.catagory ;
	FROM catagory ;
	LEFT JOIN  catlink ;
	ON catlink.catagory = catagory.catagory ;
	where catlink.ab_id = 57 ; && <strong>Remove this part of the select</strong>
	INTO CURSOR temp
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform