Trying to select records that are all for the same customer, but where the address is different.
So I can later let the user choose Bob Yonkers, then choose to update all of Bob's records to a specific address. So I want to show all the available records.
Data Example:
CUSTOMER_NAME, CUSTOMER_ADDRESS Bob Yonkers , 42 Satellite Cir Bob Yonkers , 667 Orbit St Bob Yonkers , 42 Satellite Cir Bob Yonkers , 667 Orbit St David Boom , 5959 Bush Ave David Boom , 5959 Bush Ave David Boom , 5959 Bush Ave David Boom , 5959 Bush Ave David Boom , 5959 Bush Ave Ruby Tuesday , 123 Highway Ln Apt#1 Ruby Tuesday , 123 Highway Ln David Boom ,5959 Bush Ave David Boom ,5959 Bush Ave David Boom ,5959 Bush Ave
So the query would bring back these results...
Result Example:
CUSTOMER_NAME, CUSTOMER_ADDRESS Bob Yonkers , 42 Satellite Cir Bob Yonkers , 667 Orbit St Ruby Tuesday , 123 Highway Ln Apt#1 Ruby Tuesday , 123 Highway Ln
Any help would be appreciated.