天空小小岛技术网站
标题:
Discuz! 6.0 论坛修改 uid 的 SQL 语句
[打印本页]
作者:
一粒米
时间:
2010-5-7 23:12
标题:
Discuz! 6.0 论坛修改 uid 的 SQL 语句
@fuid 是原 uid
@tuid 是目标 uid
set @fuid = 100;
set @tuid = 1;
select @fuid, @tuid;
update cdb_members set uid = @tuid where uid = @fuid limit 1;
update cdb_memberfields set uid = @tuid where uid = @fuid limit 1;
update cdb_threads set authorid = @tuid where authorid = @fuid;
update cdb_posts set authorid = @tuid where authorid = @fuid;
update cdb_pms set msgfromid = @tuid where msgfromid = @fuid;
update cdb_pms set msgtoid = @tuid where msgtoid = @fuid;
update cdb_application set uid = @tuid where uid = @fuid;
update cdb_threadsmod set uid = @tuid where uid = @fuid;
update cdb_myposts set uid = @tuid where uid = @fuid;
update cdb_mythreads set uid = @tuid where uid = @fuid;
update cdb_attachments set uid = @tuid where uid = @fuid;
update cdb_favorites set uid = @tuid where uid = @fuid;
复制代码
欢迎光临 天空小小岛技术网站 (http://tkxxd.net/)
Powered by Discuz! X3.1