|
|
|
|
| Displaying 1 to 1 (of 1 products) |
Result Pages: 1 |
1109 - Unknown table 'm' in field list
select distinct m.manufacturers_name, p.products_image, pd.products_name,
p.products_id,
p.products_price as final_price,
p.products_tax_class_id,
p.products_image
from (products p
left join specials s using(products_id)),
products_description pd,
featured f
where
p.products_status = '1'
and f.status ='1'
and p.products_id = f.products_id
and pd.products_id = p.products_id
and pd.language_id = '1' limit 0, 10
[TEP STOP]
| |