home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / vfp5.0 / vfp / samples / data / fouterj.qpr < prev    next >
Text File  |  1996-08-21  |  544b  |  13 lines

  1. * This query does a full outer join on the customer and country tables
  2.  
  3. * A full outer join allows you to retrieve all records from both tables and shows you::
  4. * (1) all the matching records first, then
  5. * (2) records with .NULL. values where a match was not found in the other table.
  6.  
  7. * Look through the result set of the query. To identify non-matching records,  look for .NULL. values. 
  8.  
  9.  
  10. SELECT Country.*, Customer.country, Customer.cust_id;
  11.  FROM  testdata!customer FULL JOIN country ;
  12.    ON  Customer.country = Country.country
  13.