1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'limit 0, 10' at line 13
select distinct p.products_image, pd.products_name, pd.products_name2, pd.products_name4,p.products_quantity, m.manufacturers_id, p.products_id, p.products_price, p.ecotaxe_ht, p.products_tax_class_id,
@leprix := ROUND( t.tarif_5_pv_1 ,2),
ROUND(@leprix,2) as PRIX,
ROUND(@leprix,2) as final_price,
NULL AS specials_new_products_price,
concat(p.numart, ' ', ROUND(@leprix,2)) as products_name0
from products p
left join manufacturers m ON m.manufacturers_id = p.manufacturers_id
INNER JOIN products_description pd ON pd.products_id = p.products_id
left join specials s on p.products_id = s.products_id
INNER JOIN products_to_categories p2c ON p2c.products_id = p.products_id
INNER JOIN categories c ON c.categories_id = p2c.categories_id
INNER JOIN tarart t ON t.products_id = p.products_id where p.products_status = '1' and pd.language_id = '2' and ((pd.products_name like '%mrp64%' or p.products_model like '%mrp64%' or m.manufacturers_name like '%mrp64%') ) and p.manufacturers_id NOT IN(-1,1752) order by limit 0, 10