I need to find the server timezone, in this form :
UTC: (SIGN)(HOURS):(MINUTES)
My code is :
SELECT 'UTC' || EXTRACT(TIMEZONE_HOURS FROM CURRENT_TIMESTAMP) || ':' ||
EXTRACT(TIMEZONE_MINUTE FROM CURRENT_TIMESTAMP) || '0' AS tz_offest;
But I am still missing the sign (+) or (-) , how can I put the sign?