I am new to postgreSQL and to my surprise there appears to be no single function equivalent to UTC_DATE() from MySQL.
UTC_DATE()
I was able to get desired result u
Use the time zone capability of PostgreSQL:
SELECT CAST(NOW() at time zone 'utc' AS date);