Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Query Help part 1
Message
From
18/10/2004 14:41:13
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00952380
Message ID:
00952390
Views:
7
>Have table1 with cust_no, field1, field2. table2 has cust_no, field3. want to create a table with table1 fields and table2.field3 if field3 > 5. Want to end up with the same number of record from table1.
>
>The WHERE field3 > 5 makes me lose records from table1.
>
>thanks
>
>Brenda


Brenda,

Try
SELECT Table1.Cust_No, Table1.Field1, Table1.Field2, Table2.Field3 ;
  FROM Table1 LEFT OUTER JOIN Table2 ;
    ON Table1.Cust_No = Table2.Cust_No ;
 WHERE Table2.Field3 > 5
Regards,
Jim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform