Syntax
UTC_DATE([fsp])
Purpose
You can call this function to return the current UTC date in the %Y-%m-%d format.
The fsp argument specifies the date precision, which can be an integer from 0 to 6.
Examples
obclient> SELECT UTC_DATE(), UTC_DATE() + 0, UTC_DATE() + 6;
+------------+----------------+----------------+
UTC_DATE() UTC_DATE() + 0 UTC_DATE() + 6
+------------+----------------+----------------+
2021-07-14 20210714 20210720
+------------+----------------+----------------+
1 row in set (0.00 sec)