Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Question regardin replacing the value in a column

Re: Question regardin replacing the value in a column

From: Thomas Kellerer <IQEWDSUVEDDF_at_spammotel.com>
Date: Fri, 26 Mar 2004 08:06:51 +0100
Message-ID: <c40kri$2cr4hs$1@ID-13919.news.uni-berlin.de>


On 26.03.2004 05:34 Praveen wrote:
> Hi..All,
>
> DB : Oracle 8i
>
> I have a column in a table which is of type varchar. It can contain
> characters like &, <, > etc along with all other characters.
>
> now, I want to replace them with some other characters when I select the
> column
>
> & to &amp;
> < to &lt;
> > to &gt;
>
> for eg if the column had the value <pass & fail>
>
> when I execute the SQL
> select column from table; I should get &lt;pass &amp; fail&gt;
>
> I do I write one single SQL to achieve this.
>

Have a look at the REPLACE function, that should do what you want (you have to nest several calls to the function)

Thomas Received on Fri Mar 26 2004 - 01:06:51 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US