如何删除/清除magento中的所有产品评论?
答案 0 :(得分:3)
转到目录 - >评论和评分 - >客户评论 - >所有评论
有复选框,您可以在右上角执行“删除”操作。
答案 1 :(得分:3)
truncate table `rating_option_vote`;
truncate table `rating_option_vote_aggregated`;
truncate table `review`;
truncate table `review_detail`;
truncate table `review_entity_summary`;
truncate table `review_store`;
答案 2 :(得分:0)
您不必删除所有表,只需删除主表(review)和聚合表(review_entity_summary),它们使用外键并设置为在删除父级时级联。
您可以运行以下内容:
DELETE FROM review;
DELETE FROM review_entity_summary;
DELETE FROM rating_option_vote;
DELETE FROM rating_option_vote_aggregated;
这应该有助于删除任何旧的评论。