MySQL DATE() Function
Definition and Usage
The DATE() function extracts the date part of a date or datetime expression.
Syntax
The date parameter is a valid date expression.
Example
Suppose we have the following "Orders" table:
| OrderId | ProductName | OrderDate |
|---|---|---|
| 1 | Jarlsberg Cheese | 2008-11-11 13:23:44.657 |
Here is the SELECT statement:
The result is shown below:
| ProductName | OrderDate |
|---|---|
| Jarlsberg Cheese | 2008-11-11 |