2 Answers
- Newest
- Most votes
- Most comments
1
Hi,
Follow the guidance of this KC article: https://repost.aws/knowledge-center/rds-change-time-zone
It just describes exactly what you want to achieve.
Best,
Didier
0
Hey bro,
I think you can run a SQL Query to change time zone data.
Try this:
SELECT
YourUTCTimeColumn,
YourUTCTimeColumn AT TIME ZONE 'UTC' AT TIME ZONE 'Eastern Standard Time' AS LocalTime
FROM
YourTable;
answered a year ago
Relevant content
- asked 3 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 9 months ago

this just changed the column of the table, I want to change the time of the db name. I have many columns query time zone, it does not work in my case.