12 lines
256 B
SQL
12 lines
256 B
SQL
dbaclass=# show timezone
|
|
TimeZone
|
|
--------------
|
|
Asia/Kolkata
|
|
(1 row)
|
|
|
|
dbaclass=# SELECT current_setting('TIMEZONE');
|
|
current_setting
|
|
-----------------
|
|
Asia/Kolkata
|
|
|
|
dbaclass=# select name,setting,short_desc,boot_val from pg_settings where name='TimeZone'; |