Hello!
I'm trying to find matches between columns holding URLS in two tables.
I want to remove all http, etc before doing the match.
The way I am doing it is by makeing a copy of each table and doing a series of replace commands on the table copies to remove all these characters before matching.
Then I do the match on the two copy tables and refer back to the main tables to get the full data (that has not been subjected to replace statements).
Does anyone know how to do this without making copies
i.e. something like
....where (table1.url)[ignoring www, http etc] = table2.url [ignoring www, http etc]
any help much appreciated.
ta very much
C
I'm trying to find matches between columns holding URLS in two tables.
I want to remove all http, etc before doing the match.
The way I am doing it is by makeing a copy of each table and doing a series of replace commands on the table copies to remove all these characters before matching.
Then I do the match on the two copy tables and refer back to the main tables to get the full data (that has not been subjected to replace statements).
Does anyone know how to do this without making copies
i.e. something like
....where (table1.url)[ignoring www, http etc] = table2.url [ignoring www, http etc]
any help much appreciated.
ta very much
C