This fetches the value of NOW() in local time, in India Standard Time, and then again in UTC.
NOW()
SELECT NOW(); SET time_zone='Asia/Kolkata'; SELECT NOW(); SET time_zone='UTC'; SELECT NOW();