I just found the way to fix this problem. After the MYSQL node result, you add a new “Function” node where you can access to the results. In my case I made the following:
items[0].json.name = Buffer.from(items[0].json.name.data).toString(‘utf-8’);
That’s it!
Cemcat