SELECT CONVERT_TZ('2020-06-30 23:59:59','America/Caracas','US/Eastern');
This returns '2020-07-01 00:29:59' which is strange because EST and Venezuela actually share the same time.
SELECT CONVERT_TZ('2020-06-30 23:59:59','US/Eastern','America/Caracas');
This returns'2020-06-30 23:59:59' which makes perfect sense.
Why is the first query not returning the correct time, while the second one does?
Any suggestions? Thank you!