Is it possible in MySQL to update a row without changing any data?
I just need a trigger to get it working, but the data should not be changed.
Of course, I could do an update, and then another update, but the trigger is pretty slow (it deletes and inserts 500 lines each time), and I need to update thousands of lines, so I would rather not do it twice.
I could just update the dummy field with NOW (), but I'm just wondering if this is possible without the βtricksβ.
Dylan source share