> Is there a way to make seperate replacements in 1 field in > one command in SQL? > > I need to remove all vowels (a,e,i,o,u) in a field. How would > I go about that? Try something like SELECT regexp_replace(your_string,'[aeiou]','','g') ... (btw, if you want all vowels, don't forget 'y' :-P) //Magnus