Mysql Date Default
Date Default in Mysql is used to return the current date and time.
Understand with Example
The Tutorial illustrate an example from Date Default in Mysql. To grasp this example, we use current_timestamp ( ) query that return the current database system timestamp as a datetime value.
Query:-
mysql> select current_timestamp()as Defaultdate; |
Output:-
+---------------------+ | Defaultdate | +---------------------+ | 2008-12-19 16:31:30 | +---------------------+ 1 row in set (0.00 sec) |