Hi,
I have a table TRANSACTIONS with 1 million records, In which i want to update AMOUNT column with AMOUNT * 0.90.
UPDATE TRANSACTIONS
SET amount = amount * 0.90;
But i want to update 10000 records for each iteration, instead of updating all the records at a time. Transaction_id is the unique column.
Please advise.