Answers for "how to subtract from the value of a table in sql"

SQL
1

how to subtract from the value of a table in sql

UPDATE Inventory
   SET Quantity = Quantity - 1
 WHERE InventoryID = 2
Posted by: Guest on March-08-2020

Code answers related to "how to subtract from the value of a table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language