Timezone Conversion
use text values
use this command first to generate the table for timezone information in MySQL/MariaDB's mysql table
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u USER_NAME mysql
then we can use the SQL like this to convert the timezone :
CONVERT_TZ(NOW(),'US/Pacific','UTC')