mosheg
Administrator
The Vertica Forum recently got a makeover! Let us know what you think by filling out this short, anonymous survey.
Please take this survey to help us learn more about how you use third party tools. Your input is greatly appreciated!
mosheg Administrator
Reactions
-
Re: Delete specific word using regexp_replace
SELECT REGEXP_REPLACE('[110 Companies .co]','\.co'); REGEXP_REPLACE ------------------ [110 Companies ] (1 row) And if you want to delete only the last occurrence of '.co' do: SELECT REGEXP_REPLACE('… (View Post)0