1053 - Server shutdown in progress
select p.products_id, ifnull(p.products_image, 'default.png') as products_image, p.products_type, p.products_p_header_name, pd.products_name, pd.products_p_cultivar_name, pd.products_p_common_name from (((orders_products op inner join orders_products op2 on (op.orders_id = op2.orders_id) and (op2.products_id <> 170)) inner join orders o on (op2.orders_id = o.orders_id)) inner join products p on (op2.products_id = p.products_id)) inner join products_description pd on (p.products_id = pd.products_id) and (pd.language_id = 1) where (op.products_id = 170) and (p.products_status = 1) group by p.products_id, products_image, p.products_type, p.products_p_header_name, pd.products_name, pd.products_p_cultivar_name, pd.products_p_common_name order by max(o.date_purchased) desc, pd.products_sort_name limit 6
STOP