my suggestion is save each value in it's own column then you can index it, query analyze etc. as you have it now it is all text and you are asking for issues later on.otherwise you can try thisdeclare @bootleg table(whachyousay varchar(max))insert into @bootlegselect '2/3 @ 1.5ml 1@200ul'unionselect '2/3 @ 1.5ml & 1@200ul'unionselect '1/2 @ 200ul @ 5/5@200ul'unionselect '4'select whachyousay, REPLACE(REPLACE(REPLACE(whachyousay,'ml ', 'ml & '), 'ml & & ', 'ml & '), 'ul @', 'ul &')From @bootleg
<><><><><><><><><><><><><><><><><>If you don't have the passion to help people, you have no passion