Allen 2023-01-15 01:32:55 3098 0 0 0 0
修改常用用户名,并与特殊网站中的用户分离

修改常用用户名,并与外网中用户分离

原来常用用户是:阿語,在所有站点中都有使用。

为安全和方便,将用户名修改为开,并与外网中用户分离

修改常用用户名,并与外网中用户分离
--决定外网中使用1038的用户,名字Casually(现在被测试帐户1337占用)
--更新1038名字
update ty_user set user_name='ccc' where user_id=1337;
update ty_user set user_name='Casually' where user_id=1038;
--原阿语用户名修改为阿开
update ty_user set user_name='阿开' where user_id=1004;
--各表中阿语改名阿开
main
post
user
log
act
tag
update ty_main set user_name='阿开' where user_id=1004;
update ty_post set user_name='阿开' where user_id=1004;
update ty_log set user_name='阿开' where user_id=1004;
update ty_act set user_name='阿开' where user_id=1004;
update ty_tag set user_name='阿开' where user_id=1004;
--外网各主题换用户casually
update ty_main set user_id=1038,user_name='Casually' where user_id=1004 and site_id in (141,144);
update ty_post set user_id=1038,user_name='Casually' where user_id=1004 and main_id in (select main_id from ty_main where site_id in (141,144));
update ty_log set user_id=1038,user_name='Casually' where user_id=1004 and site_id in (141,144);
update ty_act set user_id=1038,user_name='Casually' where user_id=1004 and site_id in (141,144);
update ty_tag set user_id=1038,user_name='Casually' where user_id=1004 and site_id in (141,144);


【版權聲明】
本文爲原創,遵循CC 4.0 BY-SA版權協議!轉載時請附上原文鏈接及本聲明。
原文鏈接:https://tdlib.com/am.php?t=IvvCiZqBN7FC
No Tags
我也要發一個   ·   返回首頁   ·   返回[编程]   ·   前一個   ·   下一個
相關內容
歡迎評論
未登錄,
請先 [ 註冊 ] or [ 登錄 ]
(一分鍾即可完成註冊!)
返回首頁     ·   返回[编程]   ·   返回頂部