I'm converting the timestamp column, which is by default in UTC, into EST by using 'AT TIME ZONE' clause (America/New_York or EST5EDT). However, the resulting text displays the timestamp along with the time zone. E.g: '2022-10-12 07:30:00.000 EST5EDT' .
I tried casting it to timestamp, cast(result as timestamp)
, but this converts it back to UTC.