Is it possible in MySQL to update a row, without changing any data?
I just need a trigger to do its work, but the data should not be changed.
Of course I could do an update and then another update, but the trigger is quite slow (deletes and inserts 500 rows everytime) and I have to update thousands of rows, so I'd rather not do it twice.
I could also just update a dummy field with NOW(), but I'm just curious if it's possible without 'tricks'.
You should just be able to run an UPDATE
command with the same data that already exists in the row. No data will change, but the trigger will still fire.
How about:
UPDATE table SET id=id WHERE ...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With