Supprimer un message
max
avec UPDATE si tu veux changer la valeur d'un champs en SQL
UPDATE stock as s, commande as c SET s.quantite_en_stock = s.quantite_en_stock - c.quantite_commande where s.id_produit = c.id_produit;
A tester car je ne suis pas tout à fait certain
UPDATE stock as s, commande as c SET s.quantite_en_stock = s.quantite_en_stock - c.quantite_commande where s.id_produit = c.id_produit;
A tester car je ne suis pas tout à fait certain