How eliminate the tab space in the column in SQL Server 2008 February 11, 2023 by Tarik Try this code SELECT REPLACE([Column], char(9), '') From [dbo.Table] char(9) is the TAB character