|
9#
樓主 |
發表于 2025-1-20 09:30:25
|
只看Ta
謝謝,用這個方法解決了:
update `pre_common_member` set `username`=REPLACE(`username`, '原名', '新名');
update `pre_ucenter_members` set `username`=REPLACE(`username`, '原名', '新名');
update `pre_forum_groupuser` set `username`=REPLACE(`username`, '原名', '新名');
update `pre_forum_post` set `author`=REPLACE(`author`, '原名', '新名');
update `pre_forum_thread` set `author`=REPLACE(`author`, '原名', '新名');
update `pre_forum_thread` set `lastposter`=REPLACE(`lastposter`, '原名', '新名');
update `pre_home_feed` set `username`=REPLACE(`username`, '原名', '新名'); |
|