Multilayer pipes and PVC plumbing have invaded our life spaces. Modern, easy to work with, they provide easy installation to the consumers, for all fittings and mixed connections, and the rapidity of feeding a room with water
SELECT _articles.*, _prix.* FROM _articles
INNER JOIN _prix ON _articles.id_article = _prix.id_article
INNER JOIN _categories ON _articles.id_article = _categories.id_article
LEFT OUTER JOIN _articles_forcingVEL AFVL ON AFVL.id_article = _articles.id_article
WHERE
(
(_articles.actif = 1 AND _prix.actif = 1)
OR
(AFVL.actif = 1 AND AFVL.PTTC > 0 )
)
AND _categories.id_categorieA = '3010' AND _categories.id_categorieB = '3502' GROUP BY _articles.id_article
ORDER BY reference ASC