Re: replace " with nothing

From: Lew <noone(at)lewscanon(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: replace " with nothing
Date: 2011-05-11 20:53:42
Message-ID: iqet0i$fm0$1@news.albasani.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Tony Capobianco wrote:
> We are converting from Oracle to Postgres. An Oracle script contains
> this line:
>
> select replace(firstname,'"'), memberid, emailaddress from members;
>
> in an effort to replace the " with nothing. How can I achieve the same
> result with Postgres?
>
> Here's the Postgres error I get:
>
> select replace(firstname,'"'), memberid, emailaddress from members;
> ERROR: function replace(character varying, unknown) does not exist
> LINE 1: select replace(firstname,'"'), memberid, emailaddress from m...

<http://www.postgresql.org/docs/9.0/interactive/functions-string.html>
<http://www.postgresql.org/docs/9.0/interactive/functions-string.html#FUNCTIONS-STRING-OTHER>

replace(string text, from text, to text)

--
Lew
Honi soit qui mal y pense.
http://upload.wikimedia.org/wikipedia/commons/c/cf/Friz.jpg

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Leif Biberg Kristensen 2011-05-11 21:11:07 Re: replace " with nothing
Previous Message Tony Capobianco 2011-05-11 20:51:05 Re: replace " with nothing