DATETIME DEFAULT '1999-12-31 23 : DATETIME : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » DATETIME »

 

DATETIME DEFAULT '1999-12-31 23


mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->      DECLARE l_datetime  DATETIME DEFAULT '1999-12-31 23:59:59';
    ->
    ->     select l_datetime;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+---------------------+
| l_datetime          |
+---------------------+
1999-12-31 23:59:59 |
+---------------------+
row in set (0.02 sec)

Query OK, rows affected (0.02 sec)

mysql>
mysql> drop procedure myProc;
Query OK, rows affected (0.00 sec)

mysql>
mysql>
mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Procedure Function
» DATETIME