Is there a way to change the value of an int (from 0 to 1) stored in the database in one field for all records at once? 😕
Yes.
i.e.
UPDATE table SET field=1 WHERE field=0
Alternatively, if you want to affect all records
UPDATE table SET field=1
Thanks, That was a whole lot quicker than updating 8000 records 1 at a time.