Big integer with default value : BIGINT : Procedure Function SQL / MySQL


SQL / MySQL » Procedure Function » BIGINT »

 

Big integer with default value


 
mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->      DECLARE l_bigint1   BIGINT DEFAULT 4000000000000000;
    ->
    ->     select l_bigint1;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+------------------+
| l_bigint1        |
+------------------+
4000000000000000 |
+------------------+
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>

        



Leave a Comment / Note


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

Follow Navioo On Twitter

SQL / MySQL

 Navioo Procedure Function
» BIGINT