I have a MySQL table for guesses for matches , when any user make a guess the table take the current time-stamp of that guess. And when the match finished the table will update the match result field. My problem is that when the table update the result it updates the time-stamp also how I can stop that change to the time-stamp using MySQL or PHP? I just want to change the result field and my query does not include the time-stamp but even though it is being updated. My table contains :
match_id, timestamp, result, guess
That is my query:
UPDATE guesses SET result = $kg_yok where match_id= $match_id AND guess = 11