I have a very simple SELECT looking like this:
SELECT path FROM items WHERE id = 17
Now in the table items
there is also a column count
, which I want to have incremented everytime the above query is executed.
What is the optimal way to do this?