I have executed the following in my postgres database
SET TIME ZONE 'UTC';
When I execute the following it shows UTC as the timezone.
show timezone;
SELECT NOW();
Next I want to query a table. My table has several columns out of which some of them are date columns. If I query that table, will the date columns present the date in UTC? what is there is no time and just the date in the column. How does this timezone setting work?