› Fóruns › SQL e PL/SQL › Update com substr ou não?? › Update com substr ou não??
15 de setembro de 2010 às 12:15 am
#96069
Participante
tente:
REPLACE(x, string_busca, string_substituta). Exemplo:
SELECT REPLACE(coluna, ‘String_original’, ‘Nova_string’)
FROM tabela;