I was wandering what's the limit for a query to update a good number of fields in a single table using an "IN" clause.
I'm talking about a range between a 5,000 to 2,000,000 rows in each call.
Is this something I should be concern about?
The sample query can be something like:
UPDATE table_name SET
field1 = '',
field2 = '',
field3 = '',
field4 = '',
field5 = '',
field6 = '',
field7 = ''
WHERE id IN (
1,
2,
3,
...,
999998,
999999,
1000000
)