My experience with database operations is minimal, so this is probably a dumb question, but:
Is there a way to update a field based on its current value with one query? Like if a table has field "quantity", incrementing that field in a particular record using a single Update Query? Something like:
Update mytable set quantity=quantity +1 where mykey = ?
I have done some web searching but found nothing along this line.
Thanks.