I have the below queries and would like to update the corresponding data in the table that the queries return. Is it possible to utilize an update statement with an Oracle function? If so, how?
select *
from A
where translate(transnbr, '_0123456789', '_') is not null ;
select *
from A
where regexp_like(transnbr, '/*-+.') ;
Both queries return records as expected.
Would something along the lines the below work?
update a
set transnbr = translate(transnbr, '_0123456789', '_') ;
update a
set transnbr = regexp_like(transnbr, '/*-+.') ;
Thanks for any replies