I am new to PostgreSQL and I was wondering if there is a direct way to just convert the timestamp values in a table to a different timezone using a function. In my case it i
I usually leave everything in UTC and convert when it is time to show. I use something like:
SELECT my_date_utc AT time zone 'utc' at time zone 'est' From ....