1146 - Table 'boschsk.products' doesn't exist

select p.products_id as id,p.products_so as so,pff.products_flags_so as flag_so,pff.products_flags_title as flag_title,pff.products_flags_icon as flag_icon,pff.products_flags_bg_color as flag_bg,pff.products_flags_txt_color as flag_txt,p.products_flag as flag,p.products_catalog_number,p.reviews,(p.ranking/5)*100 as rating,p.products_balikomat as balikomat,pd.products_short_description as short_description,pd.products_name as name,pd.products_title as title,pd.products_sef as sef,p.products_catalog_number as catalog_number,DATE_FORMAT(p.products_date_added,'%d.%m.%Y') as date_added,IF(p.products_date_available is not null, DATE_FORMAT(p.products_date_available,'%d.%m.%Y'),'') as date_available,p.products_delivery_period as delivery_period,p.products_tax_perc as tax,p.products_special as special,p.products_new as new,p.products_saleout as saleout,p.products_out_of_stock as out_of_stock,IF(p.products_special='1', IF(p.products_special_price_x_expire is null OR now() < p.products_special_price_x_expire, p.products_special_price*p.products_special_price_x,p.products_special_price),p.products_price) as price, p.products_price as price_normal,p.products_customers_special as customers_special,p.products_customers_special_price as customers_special_price,IF(p.products_special='1',p.products_special_price*p.products_special_price_x,IF(p.products_price>0.0,p.products_price,1000000.0)) as price_sort,p.products_current_price as current_price,p.products_image as image,( CASE WHEN p.products_postprice >= 0 THEN p.products_postprice WHEN m.manufacturers_postprice >= 0 THEN m.manufacturers_postprice ELSE (SELECT configuration_value FROM configuration WHERE configuration_key = 'SHOP_POSTPRICE') END ) as postprice ,IF(pn.products_id is null,'',pn.products_note) as note,m.manufacturers_name as man_name,pv.property_value as property_value, pt.property_name as property_name, pv.value_id as value_id, pv.type_id as type_id from products_family pf inner join products p on p.products_id=pf.products_family_id inner join products_description pd on pd.products_id=p.products_id inner join manufacturers m on m.manufacturers_id=p.manufacturers_id left join products_flags pff on pff.products_flags_id = p.products_flag left join products_notes pn on (pn.products_id=p.products_id and pn.languages_id='4') OR pn.products_id=null LEFT JOIN properties_to_products ptp on ptp.product_id=p.products_id LEFT JOIN properties_value pv ON pv.value_id = ptp.value_id LEFT JOIN properties_type pt ON pt.type_id = pv.type_id AND pt.main_property=1 where p.products_status='1' and p.products_out_of_stock='0' and pd.languages_id='4' and m.manufacturers_enabled='1' and ((now() >= p.products_date_available or p.products_date_available is null) and (now() <= p.products_date_expire or p.products_date_expire is null)) and pf.products_id='40580809' and pf.products_family_kind='0' order by p.products_ordered desc limit 0,10

[TEP STOP]