From http://www.w3schools.com (Copyright Refsnes Data)
MySQL Date Functions
CURTIME() returns the current time.
| CURTIME() |
The following SELECT statement:
| SELECT NOW(),CURDATE(),CURTIME() |
will result in something like this:
| NOW() | CURDATE() | CURTIME() |
|---|---|---|
| 2008-11-11 12:45:34 | 2008-11-11 | 12:45:34 |
MySQL Date Functions
From http://www.w3schools.com (Copyright Refsnes Data)