Magento 1.9 – Removing All Related Products

magento-1.9MySQLproduct-relationsproducts-management

Long time reader first time poster.

I have about 1200 products in my Magento 1.9 store. I'd like clear out all of the existing Related Products (setting all products to have no relations). Is there an easy SQL statement I can run in MySQL that can do this? Or am I stuck either having to purchase a extension, or worst case — gasp — do i have to do it manually for each product?

Thanks in advance.

Best Answer

Just run this on your database.

DELETE FROM `catalog_product_link` WHERE `link_type_id` = 1

but back-up your db first.

Related Topic