Mega Code Archive

 
Categories / MySQL / Table Index
 

Enlarge column during table copying

mysql> mysql> mysql> mysql> CREATE   TABLE TEAMS     ->         (TEAMNO         INTEGER      NOT NULL,     ->          EmployeeNO       INTEGER      NOT NULL,     ->          DIVISION       CHAR(6)      NOT NULL,     ->          PRIMARY KEY    (TEAMNO)             ); Query OK, 0 rows affected (0.00 sec) mysql> mysql> mysql> INSERT INTO TEAMS VALUES (1,  6, 'first'); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO TEAMS VALUES (2, 27, 'second'); Query OK, 1 row affected (0.00 sec) mysql> mysql> mysql> CREATE TABLE TEAMS_COPY6     ->       (EmployeeNO    INTEGER NULL,     ->        COMMENT     VARCHAR(100)) AS     -> (SELECT   *     ->  FROM     TEAMS)     -> ; Query OK, 2 rows affected (0.00 sec) Records: 2  Duplicates: 0  Warnings: 0 mysql> SELECT * FROM TEAMS_COPY6; +---------+--------+------------+----------+ | COMMENT | TEAMNO | EmployeeNO | DIVISION | +---------+--------+------------+----------+ | NULL    |      1 |          6 | first    | | NULL    |      2 |         27 | second   | +---------+--------+------------+----------+ 2 rows in set (0.00 sec) mysql> mysql> drop table teams_copy6; Query OK, 0 rows affected (0.00 sec) mysql> drop table teams; Query OK, 0 rows affected (0.00 sec) mysql>