Database update Increase field value by one

I have a blog table where i want the “Hits” field to be increased by one every time a post is viewed. Like UPDATE Posts set hits = hits + 1 where id = :$_GET_id
What is the best approach to achieve this?

Community Page
Last updated: