Skip to content
Advertisement

I need to find and replace n in a mysql field

i’ve got data like this:

1 streetn2streetnmycitynmytown

What i want to do is replace n with char(10) as i need a real linebreak in the db field.

I’ve got:

UPDATE data set `value` = REPLACE(`value`,'n', char(10)) WHERE `key`='shipping_address';

But that is not working.

Can anyone help please?

Advertisement

Answer

UPDATE data set `value` = REPLACE(`value`,'\n', CHAR(10)) WHERE `key`='shipping_address';
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement