Let's say I have the following query:
UPDATE table_name SET column_name1 = column_value1, ..., column_nameN = column_valueN WHERE id = M
The fact is that column_value1, ..., column_valueN have not changed. Will this query really be executed, and what about performance in this case compared to updating with really modified data? What should I do if I have about 50 such requests on a page with unchanged data?
source share