![]() |
Sergey Kornilov admin 5/4/2009 |
Here is the simple SQL query that decreases the quantity |
|
4983 5/10/2009 |
I have a simple stock level app. One table holds a [quantity] of stock. I need to edit this and decremnt value by 1 from another table. Do I use sql, ado or dal to make this as easy as poss. Thanks.
|
J
|
Jane 5/11/2009 |
Hi, sql = "update Stock set quantity=quantity-1 where [stock code]=" & dict("stock code") dbConnection.Execute sql |