Re: put away characters in result of query
- From: "T3" <c.maradey2@xxxxxxxxxxx>
- Date: 23 Dec 2005 07:44:51 -0800
You could also as mentioned I think just create a funtion like
Function REPLACE_CHARS
( f_string IN varchar2 )
RETURN varchar2 IS
new_string varchar2(4000) default null;
BEGIN
if f_string is null then
return null;
end if;
new_string := replace('A','');
new_string := replace('B','');
etc...
RETURN new_string;
END; -- Function REPLACE_CHARS
I think that would also solve your problem.
T3
.
- References:
- put away characters in result of query
- From: T
- Re: put away characters in result of query
- From: Carlos
- Re: put away characters in result of query
- From: T
- Re: put away characters in result of query
- From: Mark C. Stock
- put away characters in result of query
- Prev by Date: Re: formatting columns in SQL*Plus
- Next by Date: Re: TNSPING from PL/SQL?
- Previous by thread: Re: put away characters in result of query
- Next by thread: Re: put away characters in result of query
- Index(es):