How to remove invisible characters in t-sql?

后端 未结 7 947
天命终不由人
天命终不由人 2021-02-02 09:07

I tried

UPDATE TABLENAME SET COLUMNNAME = REPLACE(COLUMNNAME, \'\\t\', \'\')

But I don\'t know how to write the TAB in t-sql

7条回答
  •  暖寄归人
    2021-02-02 09:32

    You can put a tab character in the string, just press the tab key.

    That will work, but it's not very readable.

提交回复
热议问题