CURTIME Function - SQL
Overview
The CURTIME function in SQL returns the current time. It is useful for retrieving the system's current time for use in queries.
Example:
SELECT
CURTIME()
Syntax:
SELECT
CURTIME()
The CURTIME
function does not take any arguments and returns the current time in the format HH:MM:SS
.