In my Mysql table date time is saving in TIMESTAMP (UTC) format, I want to convert it to another timezone. But I am getting NULL for following query
SELECT CONVERT_TZ('1575952663','UTC','Pacific/Kiritimati');
I tried another method
SELECT CONVERT_TZ(FROM_UNIXTIME('1575952663'),'UTC','Pacific/Kiritimati');
but it is wrong time is getting because FROM_UNIXTIME converting from Asia/Kolkata because my mysql server timezone is Asia/Kolkata. This query is running from php side