mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add Configure The Timezone as a postgres til.
This commit is contained in:
@@ -53,6 +53,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
|
||||
|
||||
### postgres
|
||||
|
||||
- [Configure The Timezone](postgres/configure-the-timezone.md)
|
||||
- [Count Records By Type](postgres/count-records-by-type.md)
|
||||
- [Extracting Nested JSON Data](postgres/extracting-nested-json-data.md)
|
||||
- [Timestamp Functions](postgres/timestamp-functions.md)
|
||||
|
||||
20
postgres/configure-the-timezone.md
Normal file
20
postgres/configure-the-timezone.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Configure The Timezone
|
||||
|
||||
Running `show timezone;` will reveal the timezone for your postgres
|
||||
connection. If you want to change the timezone for the duration of the
|
||||
connection, you can run something like
|
||||
|
||||
```
|
||||
> set timezone='America/New_York';
|
||||
SET
|
||||
> show timezone;
|
||||
TimeZone
|
||||
------------------
|
||||
America/New_York
|
||||
(1 row)
|
||||
```
|
||||
|
||||
Now, if you run a command such as `select now();`, the time will be in
|
||||
Eastern time.
|
||||
|
||||
h/t Jack Christensen
|
||||
Reference in New Issue
Block a user