Delete 50 000 items

How can I delete 50 000 items from one vendor.



I have deleted the vendor but the items still remain in “no mans land”



Cheers

If you remember the vendor_id will be easy



follow http://forum.cs-cart…__fromsearch__1

and you need to modify :


$products = db_get_array('SELECT product_id FROM ?:products');




with:


$vendor_id = [VENDOR_ID]; // you add here the vendor id
$products = db_get_array('SELECT product_id FROM ?:products AND company_id=?i', $vendor_id);




Regards,





Valentin