Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Isolating unique records between two similar tables.
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00801260
Message ID:
00801304
Vues:
10
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform