|
|
|
|
| Displaying 1 to 3 (of 19 products) |
Result Pages: 1 |
1109 - Unknown table 'm' in order clause
select distinct p.products_image, pd.products_name,
p.products_id,
p.products_image,
p.products_price,
p.products_tax_class_id,
if(isnull(pg.customers_group_price), least(s.specials_new_products_price, p.products_price), least(pg.customers_group_price, s.specials_new_products_price)) as final_price from (products p
left join specials s using(products_id) )
left join products_groups pg on p.products_id = pg.products_id and pg.customers_group_id = 'g',
products_description pd where s.status = '1'
and p.products_status = '1'
and pd.products_id = p.products_id
and pd.language_id = '1'
and p.products_group_access like '%g%' order by m.manufacturers_name , pd.products_name limit 0, 3
TEP_DB_ERRORR
| |