1054 - Unknown column 'pa.actors_id' in 'where clause'
select distinct p.products_image, p.products_aka, m.manufacturers_id, p.products_id, pd.products_name, pd.products_description, p.products_price, p.products_tax_class_id, 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, p.products_status, p.products_date_available 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, products_to_categories p2c where 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 (pa.actors_id = a.actors_id and lower(a.actors_name) like '%rick_poli%') order by pd.products_name
[TEP STOP]










