I need to export some data to a csv file. To do this, I issue a select command of those rows with a certain column set to 0. So after that I must set those rows to 1 in order to not export them again.
What is the best approach to face this situation? I mean some "transaction" where I update the exact same rows that I selected before.
Is SELECT FOR UPDATE the way to go?
