Viewing post 1 (of 1 total)
Use the 'REPLACE' function
declare @Words varchar(255)
select @Words = 'This is a test of the REPLACE FUNCTION'
select replace(@words,' ', '')
September 21, 2004 at 7:47 am
#523814