I have a column called login_timestamp
, which is of type TIMESTAMP WITH TIME ZONE
.
To retrieve the month for this timestamp, I would do: EXTRACT(MONTH FROM login_timestamp)
.
However, I would like to retrieve the month for a specific time zone (in my case, Pakistan), but can't figure out how to do that.