necesito eliminar los numeros de telefono que contengan cierto caracter, asi:
+560 2 123456 -> 21213456
ademas
0341 123456 -> " " o null...
yo hago
TRIM(replace(replace(replace(replace(PH_NUM,'+560' ),''),'+56'),' '))as fono
para el primer caso, pero me falta el segundo.
Ojala alguien sepa.
Atte
Mauricio
Pd. algo asi necesito:
select PH_NUM as mal, replace(PH_NUM,select PH_NUM FROM siebel.S_CON_ADDR@siebel where PH_NUM like '+3',' ') as bien
from siebel.S_CON_ADDR@siebel where PH_NUM like '+3%'