DrumAt5280
Technical User
I have two DB tables, one table has a complete list of street names and the other has partial list of street names - I would like to make sure that each street name in the Partial list has a matching entry in the Complete list.
Because i have thousands of street names how can i automate this matching process with the two tables?
Here is what i am thinking (I will be using Coldfusion):
I create a loop,
Inside this loop i query the first item in the Partial list,
Assign the returned record to a variable such as "Partial-result",
Then query the Complete list to see if it matches the "Partial-result" variable - if it does start the loop process again - if not then write that variable to a new table called "NoMatch" and start the loop again.
Does this logic above seem to be the best way to do it?
Thanks!
Because i have thousands of street names how can i automate this matching process with the two tables?
Here is what i am thinking (I will be using Coldfusion):
I create a loop,
Inside this loop i query the first item in the Partial list,
Assign the returned record to a variable such as "Partial-result",
Then query the Complete list to see if it matches the "Partial-result" variable - if it does start the loop process again - if not then write that variable to a new table called "NoMatch" and start the loop again.
Does this logic above seem to be the best way to do it?
Thanks!