Hi
whats the easy way to remove blanks from the at string?
If i got a string like this 'xxx yyy z zz' and i want it to look like this 'xxxyyyzzz' is there then a simple solution?
example thats doesnt work:
declare @String varchar(20)
select @string = 'xxx yyy z zz'
select @string = replace(@string ,' ','')
whats the easy way to remove blanks from the at string?
If i got a string like this 'xxx yyy z zz' and i want it to look like this 'xxxyyyzzz' is there then a simple solution?
example thats doesnt work:
declare @String varchar(20)
select @string = 'xxx yyy z zz'
select @string = replace(@string ,' ','')