1054 - Unknown column 'final_price' in 'order clause'
select distinct p.products_id, pd.products_name, p.products_image, p.manufacturers_id, p.products_price, p.products_tax_class_id, p.products_sort_order from products p left join manufacturers m using(manufacturers_id), products_description pd left join specials s on p.products_id = s.products_id, categories c, categories_stores cs, products_to_categories p2c where cs.categories_id = c.categories_id and cs.categories_storename = 'Childrens Jewellery' and p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '18' order by final_price , products_sort_order, pd.products_name limit 0, 90
[TEP STOP]
|