Allen 2025-03-09 0 843 0 0 0 0
网站日志,删除没用的书籍版块及相关内容,此部分内容已经在书籍站里。

删除没用的书籍版块及相关内容,此部分内容已经在书籍站里。

select * from ty_main 
where site_id=111 and forum_type='5'
--521
select forum_id from ty_main 
where site_id=111 and forum_type='5' limit 10
group by forum_id

select * from ty_post where main_id in 
(select main_id from ty_main 
where site_id=111 and forum_type='5') limit 10
--28
select forum_id from ty_forum
where site_id=111 and forum_type='5'
group by forum_id
--31

--删除
delete from ty_forum where site_id=111 and forum_type='5';
delete from ty_post where main_id in 
(select main_id from ty_main 
where site_id=111 and forum_type='5');
delete from ty_main 
where site_id=111 and forum_type='5';

【版權聲明】
本文爲原創,遵循CC 4.0 BY-SA版權協議!轉載時請附上原文鏈接及本聲明。
原文鏈接:https://tdlib.com/am.php?t=LvUJKmNXZIny
Tag: 网站日志
歡迎評論
未登錄,
請先 [ 註冊 ] or [ 登錄 ]
(一分鍾即可完成註冊!)
返回首頁     ·   返回[站点日志]   ·   返回頂部