Something like this?declare @t table( a varchar(100))insert into @tselect 'MARINE CITY 7' union allselect 'MARINE ON SAINT CROIX 7' union allselect 'MARION CENTER 7' union allselect 'MARION HEIGHTS 7' union allselect 'HIGH RIDGE 5' union allselect 'HIGH ROLLS MOUNTAIN PARK 5' union allselect 'HIGH SHOALS 5'select * from @twhere parsename(replace(a, ' ', '.'), 2) is not null
Harsh AthalyeIndia."The IMPOSSIBLE is often UNTRIED"