I was wondering "what if". Say I have 1000 rows in my database and I need to edit one column in each by appending somthing to it. Which means I need to open each row, get a value in the row and append something to the value and then update that row.
How long would something like this take?
I know there a lot of factors that will effect the speed too but on average. In the future I might have this problem and need to know if I could run a loop 1000 times to do this in one script execution or if I would need to break it up in sections and do section by section at a time.
Thanks.