I just added new table in my database to track image views.. like so
viewcount
DATE
IMAGE_ID
NUMVIEWS
I don’t know how in the world to add the old views that I tracked before, which was just a column Views in the image table like so..
imageTable
IMAGE_ID
NUMVIEWS // 2654 or whatever
I want to add them all as an arbitrary date.
ex: 12/21/2012
seems so complicated.. maybe should just reset all views and go on with the new table
Just
INSERTthem from the old table?If you want to update the actual
numviewsyou can try:Be aware that this will update records for any date.