Does anyone know if there's an easy way for setting the quantity of all the products in my store to a certain number like 0 or 50, perhaps through an sql statement(not sure if that's what it's called)?
Thanks.
Does anyone know if there's an easy way for setting the quantity of all the products in my store to a certain number like 0 or 50, perhaps through an sql statement(not sure if that's what it's called)?
Thanks.
update products set products_quantity = 50;
It's always a good idea to make a backup before hitting your database with SQL commands. On the off chance that you sprout ten thumbs all of a sudden! :)
Good luck,
Scott
Scott C Wilson, That Software Guy, Plugin Moderator
Contributions: Quantity Discounts, Better Together, SMS on Sale, Gift Wrap at Checkout, and more.
Thank you so much. :)
Bookmarks