I was wondering what would be the easiest way to update a column by +1? I will be updating a post count of a category based on when users submits a new post.
Thanks.
I was wondering what would be the easiest way to update a column by +1? I will be updating a post count of a category based on when users submits a new post.
Thanks.
How to update order column Count value
Try
UPDATE order SET
Order_Count = Order_Count + 100
WHERE
Order_ID = '1234'