Home > Back-end >  How to include the code into a REPLACE function in oracle?
How to include the code into a REPLACE function in oracle?

Time:07-30

User @psaraj12 helped me with a ticket here about finding ascii character in a string in my DB with the following code:

with test (col) as (
  select 
    'L.A.D' 
  from 
    dual 
  union all 
  select 
    'L.           
  • Related