Jump to content

How can I move all products in one supplier?


Recommended Posts

Are you wanting to move all products from one supplier to another supplier? You could do that with an SQL query like the following:

UPDATE `ps_product` SET `id_supplier` = 2 WHERE `id_supplier` = 1



This query will move all products from supplier 1 to supplier 2. Change the prefix and IDs as necessary.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...