MySQL DATE() Function
MySQL Date Functions
Definition and Usage
The DATE() function extracts the date part of a date or date/time expression.
Syntax
Where date is a valid date expression.
Example
Assume we have the following "Orders" table:
| OrderId |
ProductName |
OrderDate |
| 1 |
Jarlsberg Cheese |
2008-11-11 13:23:44.657 |
The following SELECT statement:
SELECT ProductName, DATE(OrderDate) AS OrderDate
FROM Orders
WHERE OrderId=1 |
will result in this:
| ProductName | OrderDate |
| Jarlsberg Cheese | 2008-11-11 |
MySQL Date Functions
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|