TEXT type variable : TEXT : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » TEXT »

 

TEXT type variable


mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->     DECLARE my_text        TEXT;          /* huge  text */
    ->
    ->     set my_text = 'www.navioo.com';
    ->
    ->     select my_text;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+----------------+
| my_text        |
+----------------+
| www.navioo.com |
+----------------+
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