Viewing post 1 (of 2 total)
This code is a modification to the above post to have the cities adjusted under each other
Create TABLE #tempCityState (State Varchar(5), City Varchar(50))
Insert Into #tempCityState
Select 'CO', 'Denver' Union
Select 'CO', 'Teluride'...
June 30, 2014 at 1:13 am
#1725760