Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Compare Tables
Message
 
À
05/02/2008 12:17:57
Jay Johengen
Altamahaw-Ossipee, Caroline du Nord, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Versions des environnements
Visual FoxPro:
VFP 8 SP1
Divers
Thread ID:
01289634
Message ID:
01289813
Vues:
13
>Anything simple to compare tables and show the differences? Even it was SQL that created a cursor of the records that do not match would be fine.

if you wantto track different records between 2 table
SELECT table1.pk as pk1, table2.pk as pk2 FROM ;
                 table1;
FULL OUTER JOIN  table2 ON table1.pk=table2.pk;
WHERE ISNULL(table1.pk) OR ISNULL(table2.pk)
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform