larrydavid
Programmer
Hello,
I have a SQL Server 2005 stored procedure which has been created to return results based on the address passed in, which works for an individual address:
What I'm trying to do is loop through the Address, City and State columns in an address table and pass in those values for each address ao I can get all the results.
Any help greatly appreciated.
Thanks,
Larry
I have a SQL Server 2005 stored procedure which has been created to return results based on the address passed in, which works for an individual address:
Code:
EXEC dbo.udsp_Geocode_Locations
@Address = '1234 N. Main Street',
@City = 'Santa Ana',
@State = 'CA'
What I'm trying to do is loop through the Address, City and State columns in an address table and pass in those values for each address ao I can get all the results.
Any help greatly appreciated.
Thanks,
Larry