Multilayer pipes and PVC plumbing have invaded our living spaces. Modern, easy to work with, they provide the consumer with easy implementation, for all connections, including mixed ones, and rapid filling of 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