CHAR(255) DEFAULT 'This will be padded to 255 chars' : CHAR : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » CHAR »

 

CHAR(255) DEFAULT 'This will be padded to 255 chars'


mysql>
mysql> delimiter $$
mysql>
mysql> CREATE PROCEDURE myProc()
    -> BEGIN
    ->      DECLARE l_char CHAR(255DEFAULT 'This will be padded to 255 chars';
    ->
    ->     select l_char;
    -> END$$
Query OK, rows affected (0.00 sec)

mysql> delimiter ;
mysql>
mysql> call myProc();
+----------------------------------+
| l_char                           |
+----------------------------------+
| This will be padded to 255 chars |
+----------------------------------+
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>



Leave a Comment / Note


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

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Procedure Function
» CHAR