Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL: update without changing data, possible?

Tags:

mysql

triggers

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'.

like image 987
Dylan Avatar asked Sep 13 '11 21:09

Dylan


2 Answers

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.

like image 35
cdeszaq Avatar answered Nov 15 '22 11:11

cdeszaq


How about:

UPDATE table SET id=id WHERE ...
like image 162
Rok Kralj Avatar answered Nov 15 '22 13:11

Rok Kralj