Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Matching on SSN between .MDB and .DBF (or not)
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Matching on SSN between .MDB and .DBF (or not)
Divers
Thread ID:
01157591
Message ID:
01157591
Vues:
77
Here's a good one.... I have a table from Access that I want to get records from that are not present in an equivalent VFoxPro .DBF. Both tables have a field called SSN with a length of 11. The SSNs include the dashes.
SELECT distinct jet.last_name,jet.first_name,jet.ssn;
FROM jet;
WHERE jet.ssn NOT in (SELECT ALLTRIM(ssn) FROM person)
If I don't ALLTRIM the field on the VFP side....I get a ton of "false positives". Can somebody tell me why that two character fields, of the same length, with the same data in each, should not be equivalent between Jet and VFP?

It also turns out that I can use LTRIM or RTRIM....any version of the TRIM command appears to be effective in allowing this to work correctly.
-- Larry Keyes
Remember only You can prevent Gray Goo. Never release nanobot assembers without replication limiting code.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform