При запросе GROUP_CONCAT появляются дубли, как избавиться от них?
Вот сам запрос, отрабатывает корректно
SELECT p.*, GROUP_CONCAT(s.sectionId) as "sections", GROUP_CONCAT(t.tagId) as "tags" FROM products AS p
LEFT JOIN sections AS s ON p.id = s.productId
LEFT JOIN tags AS t on p.id = t.productId
GROUP BY p.id, p.name