Rentals - Electronics - Televisions

1021 - Disk full (/tmp/#sql-temptable-17dd9c-1f39591-19a0c0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")

select p.products_added, p.products_model, pd.products_name, m.manufacturers_name, p.products_quantity, p.products_image, p.products_weight, pd.products_description, p.products_id, p.rental_type, p.manufacturers_id, 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 from products p left join manufacturers m on p.manufacturers_id = m.manufacturers_id left join specials s on p.products_id = s.products_id, products_description pd,products_to_categories p2c, categories c where p2c.products_id = p.products_id and p2c.categories_id = c.categories_id and c.categories_status = 1 and p.products_status = '1' and pd.products_id = p.products_id and pd.language_id = '5' and p2c.categories_id = '1126' order by p.sort_order, pd.products_name

[TEP STOP]