Hi @Johan van der Walt ,
Thanks for using Microsoft Q&A !! I am getting the correct results on PostGreSQL server with SELECT Now();. What's the time/timezone you are expecting. Can you please provide a screenshot ?
Also, you can check your current PostgreSQL server timezone setting using the below query:
SELECT current_setting('TIMEZONE');
If your timezone is not correct then you can use SET TIME ZONE
to change it for specific region using the timezone abbreviation. Reference - SET TimeZone
You can also use the below query to find list of available timezones -
SELECT * FROM pg_timezone_names;
Other PostGreSQL documents you can refer to -
Thanks Saurabh