How to get the list of timezones supported by postgresql?

by hal.littel , in category: MySQL , 17 days ago

How to get the list of timezones supported by postgresql?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by dedrick , 16 days ago

@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.