I set the Postgres timezone to UTC using:
SET timezone = 'UTC';
But then when I do:
select now();
It returns the following result:
2023-06-04 14:06:08.428 +0200
I was expecting the result to just be in UTC format: 2023-06-04 12:06:08.428
.
I am aware that I can use select now()::timestamp
to get the UTC value, but I am wondering:
Where does this +0200
come from, if I set the timezone to UTC using SET
?
Thank you.