- 積分
- 257
- 金幣
- 1 個(gè)
- 社區(qū)幣
- 0 元
爐火純青
- 貢獻(xiàn)
- 0 點(diǎn)
- 金幣
- 1 個(gè)

|
9#
樓主 |
發(fā)表于 2025-1-20 09:30:25
|
只看Ta
謝謝,用這個(gè)方法解決了:
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`, '原名', '新名'); |
|