rseigel Posted October 14, 2012 Share Posted October 14, 2012 Hello, I'm working with the 1.5.1 version of PrestShop in case anyone is familiar with it. I've included my original message in the Presta forums below. So, it seems that the quantity field is no longer used in the product table and is instead pulled from the stock_available table. Thanks for the hour of total confusion Presta developers. I'm trying to update the quantities using a script outside of Presta (dropshipping - I pull the stock availability from them daily). It was working fine until the quantity field moved. Here's the SQL I'm trying to run: UPDATE stock_available SET stock_available.quantity = 1 FROM stock_available INNER JOIN product ON stock_available.id_product = product.id_product WHERE product.supplier_reference = 'BKFLAGPL'; The real script uses variables for stock_available.quantity and product.supplier_reference. I'm just trying to get the basic SQL to work. I get the following error: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM stock_available INNER JOIN product ON stock_available.id_product = product.' at line 3 Any ideas on where I'm going wrong? Any and all help would be much appreciated. Quote Link to comment Share on other sites More sharing options...
Barand Posted October 14, 2012 Share Posted October 14, 2012 Needs a little rearranging UPDATE stock_available INNER JOIN product ON stock_available.id_product = product.id_product SET stock_available.quantity = 1 WHERE product.supplier_reference = 'BKFLAGPL'; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.