I have an Update Statement table in a large table. It updates only one row at a time.
Update MyTable Set Col1 = Value where primary key filters
When executing this update statement, I also want to get the value in reverse order to avoid Select Query in the same table to save resources. What will be my syntax to achieve this?
source share