I try to store the datetime (that is a calendar-date with a clock-time) in a table.
As far I read the type DATETIME does not have a timezone.
And type TIME is limited from the year 1970 to 2038.
I live in a country with a different timezone in summer (CEST) as it is in winter (CET). So there is a double hour 3 when we switch from CEST to CET.
When I am not able to have a datetime with the timezone included and I need to differentiate this hour 3, then I see no way but to handle it manually.
e.g. have another column for it or convert any DATETIME into UTC.
Is that the only way or did I miss something?