Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/magento/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何删除/清除magento中的所有产品评论?_Magento_Review - Fatal编程技术网

如何删除/清除magento中的所有产品评论?

如何删除/清除magento中的所有产品评论?,magento,review,Magento,Review,如何删除/清除magento中的所有产品评论?转到目录->评论和评级->客户评论->所有评论 右上角有复选框,您可以执行删除操作。您不必删除所有表,只需删除主一次审阅和聚合审阅实体摘要,它们使用外键,并设置为在删除父级时级联 truncate table `rating_option_vote`; truncate table `rating_option_vote_aggregated`; truncate table `review`; truncate table `review_de

如何删除/清除magento中的所有产品评论?

转到目录->评论和评级->客户评论->所有评论


右上角有复选框,您可以执行删除操作。

您不必删除所有表,只需删除主一次审阅和聚合审阅实体摘要,它们使用外键,并设置为在删除父级时级联

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`;
您可以只运行以下操作:

DELETE FROM review;
DELETE FROM review_entity_summary;
DELETE FROM rating_option_vote;
DELETE FROM rating_option_vote_aggregated;
这将有助于删除任何旧评论