Mysql Date Today

Mysql Date Today show you Query to retrieve the current today date.
Understand with Example
The Tutorial illustrate an example from Date Today in My sql. The Query used
in the below example the now( ) return you the today current date.
date (now ( )) : The Query now ( ) return you the current
today date in Mysql.
Query for finding the current date:-
mysql> select date(now())as DateToday;
|
Output:-
+------------+
| DateToday |
+------------+
| 2008-12-22 |
+------------+
1 row in set (0.00 sec)
|

|