Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
HOWTO: Select records from other table's selection
Message
 
 
To
22/02/2005 07:55:45
Aaron K. Y. Chu
Health & Care Co. Ltd.
Hong Kong, Hong Kong
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00989182
Message ID:
00989183
Views:
20
You don't want OUTER JOIN in this acse. Try
SELECT TableB.* ;
  FROM TableB JOIN tableA ON TableB.tID = TableA.tID ;
  WHERE tableA.selected1 > 0
>Help is highly appreciated...
>
>I need to select records from a table based on another table selection like so:
>
>TableA
>Selected1
>tID
>tValue
>
>TableB
>tID
>tCode
>
>IF tableA.selected1 > 0, select representing tableA.tID from table B, how can I do it by SQL statement?!
>
>SELECT * FROM TableB LEFT OUTER JOIN table A ON tableB.tID = TableA.tID WHERE tableA.selected1 > 0
>
>however, it only graps one record from tableB with corresponding record in table A... what's wrong?!
>
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform