Replace tab in MS SQL
July 14, 2010 at 4:53 am Taco Fleur Leave a comment
Replacing a tab with something else in MS SQL is easy peasy, following is the code
update [table name] set [column name] = REPLACE( [column name], CHAR(9), ' ')
Entry filed under: MS SQL.
Trackback this post | Subscribe to the comments via RSS Feed