I tried
UPDATE TABLENAME SET COLUMNNAME = REPLACE(COLUMNNAME, \'\\t\', \'\')
But I don\'t know how to write the TAB in t-sql
The ASCII code for tab is 9; you could try
update tablename set columnname = replace(columnname, char(9), '')