Is there a more succinct way to write the following in Postgres:
DATE(NOW() AT TIME ZONE time_zone)
i.e. to get the local time for a record with time zone time_zone
?
Ideally I'd like to do something like this:
NOW(time_zone)
That doesn't work but is there anything similar and clean I can use?