From: | Steve Crawford <scrawford(at)pinpointresearch(dot)com> |
---|---|
To: | Carlos Mennens <carlos(dot)mennens(at)gmail(dot)com> |
Cc: | "PostgreSQL (SQL)" <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: Update Mass Data in Field? |
Date: | 2012-01-27 00:06:43 |
Message-ID: | 4F21EA93.9090202@pinpointresearch.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On 01/26/2012 03:59 PM, Carlos Mennens wrote:
> I'm new to SQL so I'm looking for a way to change several email
> addresses with one command. For example everyone has a 'holyghost.org'
> domain and I need to change a few 100 email addresses in the field
> 'emp_email'. I need to UPDATE employees table which has a COLUMN
> 'emp_email' and change %holyghost.org to %ghostsoftware.com.
>
> I tried:
>
> UPDATE employees SET emp_email = '%ghostsoftware.com' WHERE emp_email
> LIKE '%holyghost.org';
>
> It didn't update anything when I ran the command. Does anyone know how
> I need to correct my SQL statement above to change everyone's email
> address?
>
...set emp_email = regexp_replace(emp_email, '@holyghost.org$',
'@ghostingsoftware.org') where emp_email ~ '@holyghost.org$'...
This is using the regular expression match and regexp_replace to ensure
that the pattern is anchored at the end of the field and includes the
"@" sign in the expression to avoid accidentally matching something like
(dot)(dot)(dot)(at)theholyghost(dot)org(dot)
You can always do a select of the emp_email alongside the replacement
expression to be sure it will do what you want before actually updating
your database.
Cheers,
Steve
From | Date | Subject | |
---|---|---|---|
Next Message | David Johnston | 2012-01-27 00:20:07 | Re: Update Mass Data in Field? |
Previous Message | Carlos Mennens | 2012-01-26 23:59:04 | Update Mass Data in Field? |