Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Matching on SSN between .MDB and .DBF (or not)
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Matching on SSN between .MDB and .DBF (or not)
Miscellaneous
Thread ID:
01157591
Message ID:
01157591
Views:
76
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.
Next
Reply
Map
View

Click here to load this message in the networking platform