Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need help with a right join (I think?)
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00256837
Message ID:
00256905
Views:
24
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform