I would like to keep track how many times a row was returned in a mysql query. Is there a way to INCREMENT row data as it is selected? I would like to do this in one shot vs running two queries.
So a rough idea,
SELECT * FROM data WHERE text in($search) & UPDATE hits=hits+1
Something like that.