I want to read data from my MYSQL Database and show the records in a Table.
That works fine but my problem is that the time is different. Its exactly 2 hours different.
Here some Pictures:
Possibly you are writing the date in UTC (as you should)
if you want to convert to local timezone, mysql provides some function to do that in the sql query
It could be something like :
SELECT ID, CONVERT_TZ(Zeit,'+00:00','+2:00') as Zeit, Ereignis WHERE ...
Thanks for the fast reply.
The timestamp in the database is automatically generated by a new record.
The timestamp in the sql database is the correct one.
The database and Node red are Running on the same Server (QNAP NAS). So i don‘t unterstand why Node red changes the „value“ of the record.. by reading it.