TEXT variable with DEFAULT value : TEXT : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » TEXT »

 

TEXT variable with DEFAULT value


mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->     DECLARE l_text TEXT DEFAULT 'This is a really long string.  In stored programs we can use text columns fairly freely, but in tables there are some limitations regarding indexing and use in various expressions.';
    ->     select l_text;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| l_text                                                                                                                                                                               |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| This is a really long string.  In stored programs we can use text columns fairly freely, but in tables there are some limitations regarding indexing and use in various expressions. |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
row in set (0.00 sec)

Query OK, rows affected (0.00 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

MySQL TUTORIALS

 Navioo Procedure Function
» TEXT