MySQL Date Functions
The DATE() function extracts the date part of a date or date/time expression.
Where date is a valid date expression.
Assume we have the following "Orders" table:
| OrderId | ProductName | OrderDate |
|---|---|---|
| 1 | Jarlsberg Cheese | 2008-11-11 13:23:44.657 |
The following SELECT statement:
will result in this:
| ProductName | OrderDate |
|---|---|
| Jarlsberg Cheese | 2008-11-11 |
MySQL Date Functions
Your message has been sent to W3Schools.