I'm finding in Postgresql and I want to remove +9 UTC value in my query.
For example: In to_timestamp column, I want to remove +09, and only keep 2016-02-26 00:23:44 value.
This is my query:
select t,to_timestamp(v) from c1.hour where f = 22 and date_trunc('day',t - '1 hour'::INTERVAL) = '2016-02-26 00:00:00' order by t ;
And this is my result when I didn't use to_timestamp:

Can I get some help on this please?
