if all you want/need is a simple count, then yes, add an integer column to the article table that updates each time an article is pulled out. if you need a more comprehensive running log of each request (date/time, user_id of requester, etc...) then i suggest storing all of that in a separate table using a foreign key to the article table.