Hi All,
I have an address field with data such as
Sheldruck House : Billericay : Essex
I want to replace the ':' with carriage returns.
I'm sure this is simple but how do I do it?
I've tried
update PL_ACCOUNTS
set SUADDRESS = REPLACE(':',char(10),CHAR(13))
But its not correct.
Thanks
I have an address field with data such as
Sheldruck House : Billericay : Essex
I want to replace the ':' with carriage returns.
I'm sure this is simple but how do I do it?
I've tried
update PL_ACCOUNTS
set SUADDRESS = REPLACE(':',char(10),CHAR(13))
But its not correct.
Thanks