|
Thread: ?!H
-
Nov 2nd, 2000, 12:06 PM
#1
Thread Starter
Fanatic Member
I have 2 tables with FName LName Address, City
Want to see whether one is a subset of the other
select count(*)
from firsttable
where Rtrim(Ltrim(Upper(LName))) + " " + Rtrim(Ltrim(Upper(FName))) + " " + Rtrim(Ltrim(Upper(Address1))) + " " + Rtrim(Ltrim(Upper(City)))
in (select
Rtrim(Ltrim(Upper(LName))) + " " + Rtrim(Ltrim(Upper
(FName))) + " " + Rtrim(Ltrim(Upper(Address1))) + " " +
Rtrim(Ltrim(Upper(City)))
from secondtblSingularsExtracted)
No primary key or anything..
How can we speed this up??
Any ideas welcome
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|