Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような単純なテーブルがあります。
id (AUTO_INC) | text (VARCHAR 255) 1 hey!
すべてのテキスト値をトリミングして、フィールド内の空白または非表示のスペースをすべて削除することはできますか?
この画像を見ると、「単語」フィールドに奇妙な隠しスペース文字が含まれていることがわかります。
ありがとう!
\t、およびスペースを削除するには\n、次のことができます
\t
\n
update your_table set `text` = trim(replace(replace(`text`, '\n', ''), '\t',''))