Mysql Date Only

Mysql Date Only is used to show the current Date.
Understand with Example
The Tutorial illustrate an example on Mysql Date Only. To understand this
example, we create an example that include a Query date (now ( )) returns
you a current date as field name 'DateOnly'.
date(now ( ) ) : The date(now ( )) return you a current date
value as Date Only field name.
Query:-
mysql> select date(now())as DateOnly;
|
Output:-
+------------+
| DateOnly |
+------------+
| 2008-12-22 |
+------------+
1 row in set (0.06 sec)
|

|