Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configure-time-zone.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Each client has its own time zone setting, given by the session `time_zone` vari
SET time_zone = timezone;
```

You can use the following statement to view the current values of the global and client-specific time zones:
You can use the following statement to view the current values of the global, client-specific and system time zones:

{{< copyable "sql" >}}

```sql
SELECT @@global.time_zone, @@session.time_zone;
SELECT @@global.time_zone, @@session.time_zone, @@global.system_time_zone;
```

To set the format of the value of the `time_zone`:
Expand Down