For example if you have this query:
UPDATE table1
INNER JOIN table2 ON table1.id = table2.id
SET table2.id = table1.idSetting
WHERE table2.property IS NULL
You can note that the table2 id's changes when the table2.property is null, my question is: if this will affect the "affected rows" when the query is running or not.
I do this question because I'm trying to do an update similar to this that needs to update some columns that are in the inner join clauses, but is suposed that will affect 36000 rows but finally only affects 4500 rows.
Thanks.