Postgresql – Is there a way that i store timestamp with time zone in Postgres and not converting it to UTC
I want to save in Postgres TIMESTAMP WITH TIME ZONE column 2012-08-24 14:00:00+03:00 After a SELECT I am getting: 2012-08-24 11:00:00+00:00 I know that my DB is on UTC zone, but is there a way to save it and not…