I have one MySql dbase with two tables: inventory_for_store_1, and inventory_for_store_2. Within these tables are descriptions of products, meta-tags for products, and quantity of products.
The only thing in common between the two tables is the quantity column. The quantity will be the same in both tables.
Instead of having to use 2 seperate SQL update statements to update the quantity everytime a product is sold, is there a more efficient or easier way to maintain the quantity columns in these two tables?
Thanks.