Can MySQL convert a stored UTC time to local time-zoned time directly in a normal select statement?
Let\'s say you have some data with a timestamp (UTC).
select convert_tz(now(),@@session.time_zone,'+03:00')
For get the time only use:
time(convert_tz(now(),@@session.time_zone,'+03:00'))