1030 - Got error 28 from storage engine
select p.products_model, pd.products_name, pd.products_description, m.manufacturers_name, p.products_quantity, p.products_image, p.products_weight, p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, p.products_free_shipping, p.products_quantity, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price
from products p
inner join products_description pd on (p.products_id = pd.products_id)
left join manufacturers m on (p.manufacturers_id = m.manufacturers_id)
left join specials s on (p.products_id = s.products_id)
inner join products_to_categories p2c on ( p.products_id = p2c.products_id)
where p.products_status = 1
and pd.language_id = 3
and p2c.categories_id = 320196
order by final_price asc, pd.products_name limit 0, 18
[TEP STOP]