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.
MySql データベースの複数の不要なサインを巨大すぎるため削除するのに苦労しています。そのサインを削除するスクリプトはありますか?
複数記号付きのサンプルレコード:-
[]No. 11, Persiaran Bukit [] Satu&[]Taman @Sri %Nibong
ここで提案するのは、不要な可能性のあるすべての文字を含むテーブルを準備し、replace関数を使用して1つのselectクエリでそれらを処理することです。
機能を使用しREPLACEます。
REPLACE
UPDATE tablename SET ColName = REPLACE(REPLACE(REPLACE(Colname, '&', ''), '@', ''), '%', '')