Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Find last occurance of character
In article <429e2e09.1175744687_at_localhost>, NetComrade says...
> is there a way (using oracle functions) to find last occurance of
> character w/o writing a recursive function?
>
> e.g. select XXXX('ooozo','o') from dual
> would return 5
>
>
SELECT INSTR('ooozo','o',-1) FROM dual;
-- jeremyReceived on Thu Jun 02 2005 - 05:12:44 CDT
![]() |
![]() |