blackleg Posted May 6, 2010 Share Posted May 6, 2010 Can I do it from phpMyadmin? How? Link to comment Share on other sites More sharing options...
rocky Posted May 6, 2010 Share Posted May 6, 2010 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 More sharing options...
blackleg Posted May 6, 2010 Author Share Posted May 6, 2010 Thank you very much. It worked. Link to comment Share on other sites More sharing options...
rocky Posted May 6, 2010 Share Posted May 6, 2010 If your issue is resolved, please edit your first post and add [sOLVED] to the front of the title. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now