Member
hal.littel
How to get the list of timezones supported by postgresql?
dedrick
@hal.littel
To get the list of timezones supported by PostgreSQL, you can use the following SQL query:
1 2
SELECT name FROM pg_timezone_names;
Running this query will return a list of all timezones supported by PostgreSQL.