Hi,
If I have readings in a table and want to divide the values by some number, is it true that iterating through the range ( which can be 1 day, 1 week, 1 month, 6 months.. anything) and using the update command for each individual row is a better idea than a bulk update for the whole range? Would it put less of a 'burden' on the server if I go the individual update route?
here is an example of the command --
update <tablename> set readingval = readingval / <number> where .....
thanks!!