I'm trying to convert mysql current timezone, to another one. But I'm getting Null as answer:
select *, CONVERT_TZ(NOW(),@@session.time_zone, 'America/Sao Paulo')
from historical_prices;
This is my query.
How can I fix this?
I'm trying to convert mysql current timezone, to another one. But I'm getting Null as answer:
select *, CONVERT_TZ(NOW(),@@session.time_zone, 'America/Sao Paulo')
from historical_prices;
This is my query.
How can I fix this?