I am trying to select records from two tables where it is not likely there will be an exact match. The data from sales will be 1401 ELM STREET, from pifile it will be 1401 ELM.
Sales has 3,000 records, pifile has 58,000 records. The following query works fine, but takes about 20 minutes to return 2,700 records. Any suggestions to speed it up or make it more efficient.
SELECT PIFILE.PID, SALES.ADDRESS, PIFILE.[PROP ADDRESS], SALES.[MSALE DATE], SALES.[MLS SA], SALES.CONCESSIONS
FROM PIFILE, SALES
WHERE (((SALES.ADDRESS) Like [PIFILE.PROP ADDRESS] & "*"));
willybgw
Sales has 3,000 records, pifile has 58,000 records. The following query works fine, but takes about 20 minutes to return 2,700 records. Any suggestions to speed it up or make it more efficient.
SELECT PIFILE.PID, SALES.ADDRESS, PIFILE.[PROP ADDRESS], SALES.[MSALE DATE], SALES.[MLS SA], SALES.CONCESSIONS
FROM PIFILE, SALES
WHERE (((SALES.ADDRESS) Like [PIFILE.PROP ADDRESS] & "*"));
willybgw