syntax error in query 'SELECT sku, product.name AS product_name, model.name AS model_name, brand.slug AS brand_slug, brand.name AS brand_name, terminal_position, polarity, rated_voltage, capacity, cca, length, width, box_height, etn, regular_price, sale_price FROM product JOIN model ON product.model_id=model.model_id JOIN brand ON model.brand_id=brand.brand_id JOIN battery ON product.product_id=battery.product_id JOIN (SELECT product_id, min(regular_price) regular_price, min(sale_price) sale_price FROM price GROUP BY product_id) t1 ON product.product_id=t1.product_id WHERE model.name IN ('95Ah-AGM', 'P72 09', 'P74 12', 'PO75J', '6CT-74A3', '70Ah-AGM') ORDER BY product_name, brand_name LIMIT 5'