Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Isolating unique records between two similar tables.
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00801260
Message ID:
00801304
Views:
9
Hello John,

Try using this:

-------------
SELECT a.table_nm, a.field_nm, b.table_nm, b.field_nm ;
from TableA a FULL OUTER JOIN TableB b ON a.table_nm = b.table_nm ;
and a.field_nm = b.field_nm
-------------

Check the ouput of this query. You will get easily what all you want.


---
Raj
Previous
Reply
Map
View

Click here to load this message in the networking platform