標籤:strong alter flow databases nbsp load min database start
由於當時是在美國安裝的postgreSQL ,導致回到上海後使用時,發現時間資料顯示不正確。
To acomplish the timezone change in Postgres 9.6 you must:
(1)查看當前timezone:
show timezone;
或者在pgAdmin 4上查看:
The time zone is a session parameter. So, you can change the timezone for the current session.
set timezone TO ‘
Asia/Shanghai
‘;
Note: ‘set timezone To ..‘ only sets the timezone for the current session and if you change the timezone configuration parameter in Postgresql.conf it should change the timezone for all databases.
Choose a timezone from:
SELECT * FROM pg_timezone_names;
Search for the closest location to your zone and set example:
ALTER DATABASE postgres SET timezone TO ‘Asia/Shanghai‘;
Use your DB name.
(2)Uncomment the "timezone" line in your postgresql.conf
file and put your timezone as shown:
(3)Restart Postgres 或者Tools>Reload Configuration (then refresh)
參考:https://stackoverflow.com/questions/6663765/postgres-default-timezone
postgreSQL使用雜談