string(1439) "SELECT p.product_id, IF(p.sort_order=0, 10000000000,p.sort_order) as new_sort, (SELECT AVG(rating) AS total FROM review r1 WHERE r1.product_id = p.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating, (SELECT price FROM product_discount pd2 WHERE pd2.product_id = p.product_id AND pd2.customer_group_id = '1' AND pd2.quantity = '1' AND ((pd2.date_start = '0000-00-00' OR pd2.date_start < NOW()) AND (pd2.date_end = '0000-00-00' OR pd2.date_end > NOW())) ORDER BY pd2.priority ASC, pd2.price ASC LIMIT 1) AS discount, (SELECT price FROM product_special ps WHERE ps.product_id = p.product_id AND ps.customer_group_id = '1' AND now() between ps.date_start and ps.date_end ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special FROM product p LEFT JOIN product_to_category pc ON (p.product_id = pc.product_id) LEFT JOIN category c ON (pc.category_id = c.category_id) LEFT JOIN product_description pd ON (p.product_id = pd.product_id) LEFT JOIN product_to_store p2s ON (p.product_id = p2s.product_id) LEFT JOIN customerpartner_to_product cp ON (p.product_id=cp.product_id) LEFT JOIN customerpartner_to_customer cc ON (cp.customer_id = cc.customer_id) WHERE pd.language_id = '1' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '0' AND c.category_id = '31' or c.parent_id ='31' AND c.category_type=1 and p.product_id > 0 GROUP BY p.product_id ORDER BY new_sort ASC, LCASE(pd.name) ASC LIMIT 0,24"