I am having a Update Statement on a large volume table. It updates only one row at a time.
Update Statement
Update MyTable Set Col1 = Value wher
You can use the RETURNING keyword.
Update MyTable Set Col1 = Value where primary key filters returning column1,column2... into variable1,variable2...