Collections:
UTC_DATE() - Current UTC Date
How to obtain the current UTC date using the UTC_DATE() function?
✍: FYIcenter.com
UTC_DATE(datetime) is a MySQL built-in function that
returns the current UTC date.
For example:
SELECT UTC_DATE(), NOW(), @@system_time_zone; -- +------------+---------------------+--------------------+ -- | UTC_DATE() | NOW() | @@system_time_zone | -- +------------+---------------------+--------------------+ -- | 2023-11-16 | 2023-11-15 23:12:44 | EST | -- +------------+---------------------+--------------------+
Reference information of the UTC_DATE() function:
UTC_DATE(): date Returns the current UTC date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in string or numeric context. Arguments, return value and availability: date: Return value. The current UTC date. Available since MySQL 4.
Related MySQL functions:
⇒ UTC_TIME() - Current UTC Time
⇐ UNIX_TIMESTAMP() - Calculating Unix Timestamp
2023-11-17, 1283🔥, 0💬
Popular Posts:
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
How REAL and FLOAT Literal Values Are Rounded in SQL Server Transact-SQL? By definition, FLOAT(n) sh...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...