What is wrong with this SQL Query and how to possibly fix it? – SEO
The Idea of the Query is to get all the entries where the seo_path_info has duplicates and the corresponding product is set to active. My Query is: SELECT `seo_path_info`,COUNT(`seo_path_info`) FROM `shopware`.`seo_url` seo GROUP BY `seo_path_info` HAVING COUNT(`seo_path_info`)>1 LEFT JOIN product…