Return the current time.
SELECT CURTIME(); |
The CURTIME() function returns the current time.
Note: The time is formatted as “HH:MM
” (string) or as HHMMSS.uuuuuu (numeric).
Note: This function is equivalent to CURRENT_TIME()
CURTIME() |
Works in: |
From MySQL version 4.0 |
Provide the current time + 1:
SELECT CURTIME() + 1; |