Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Replace in table
djockheck_at_gauselmann.de (Detlef Jockheck) writes:
> how can I replace "a" with "abc" in a column? I would prefer a sql-solution.
>
> eg:
> column_old
> a
> hda
> jkaj
>
> column_new
> abc
> hdabc
> jkabcj
replace( col, 'a', 'abc' ). see too the sql reference manual.
Harald Received on Tue Aug 26 2003 - 05:45:49 CDT
![]() |
![]() |