Provide the current time.
SELECT CURRENT_TIME(); |
The CURRENT_TIME() function yields the current time.
Please note that the time is provided in either “HH-MM-SS” (string) or HHMMSS.uuuuuu (numeric) format.
Note: This function is equivalent to the CURTIME() function.
CURRENT_TIME() |
Works in: |
From MySQL version 4.0 |
Provide the time that is one hour ahead of the current time.
SELECT CURRENT_TIME() + 1; |