I recently built a workflow on n8n version 1.58.0 and it results that I need to update some data in MySQL table. The workflow is executing fine with no problems, but in my DataBase the data I want to be updated is not being updated. I mean that the update node executes well in my workflow and outputs a succesful status but the data in MySQL table is not showing updated.
I read about the Update node, that this node has some limitations and that will only show success or unsucces status, but I want the data updated be shown in MySQL table.
So with the update we show a sucess if MySQL is returning that it did the update and an error if it fails, I am not sure why MySQL would say it has worked when it hasn’t though so there could be something in the data.
You could try Exceute Query instead and write your own query to do the update which may help.