批量删除对应实体文章为空的虚文章

作者: 来源:本站原创 点击数: 发布时间:2021年08月19日

应该是3.0版本之前存在的问题,就是删除实体文章后,对应虚文章没有被自动删除掉,导致后台无法搜索、编辑、加载这些存在问题的虚文章数据:

搜索文章标题、ID、或者分页都提示数据加载失败

fca1e39bb0e24a859b5e100af07f5922.png

--查出所有实内容不存在的虚内容
select * from pe_contentmanage_article where ActualContentId is not null and ActualContentId >0 and ActualContentId not in (select contentid from pe_contentmanage_article)

--删除所有实内容不存在的虚内容
delete from pe_contentmanage_article where ActualContentId is not null and ActualContentId >0 and ActualContentId not in (select contentid from pe_contentmanage_article)