If I have a simple select query that select everthing in a row like
SELECT * FROM profiles WHERE .....
can I also make a update in conjunction with the selection? Like 'column+1' so I will get a field telling me how many times a specfic rowID has been viewed?
What about speed? Is there any difference in running two queries right after each other or running one query with a combined select/update?