|
|
1054 - Unknown column 'p.products_id' in 'on clause'
select count(distinct p.products_id) as total from products p, manufacturers m
left join products_groups pg on p.products_id = pg.products_id and pg.customers_group_id like '%G%',
products_description pd,
specials s
where
p.products_status = '1'
and p.manufacturers_id = m.manufacturers_id
and s.products_id = p.products_id
and pd.products_id = p.products_id
and pd.language_id = '1'
and s.status = '1'
[TEP STOP]
| |