if there is a usable relationship between the tables and your mysql version is 4.0.4 or better, you can update mutiple tables at once
another way would be to do
UPDATE table1
SET column2 = <new_value>
WHERE id IN (1,2,3,5,9,15,7894)
or
UPDATE table1
SET column2 = <new_value>
WHERE id BETWEEN 1 AND 3000
how are the tables related to each other?