Mega Code Archive

 
Categories / MySQL / Table Index
 

Copy one row of data

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> CREATE TABLE TEAMS_COPY4 AS     -> (SELECT   TEAMNO, EmployeeNO     ->  FROM     TEAMS     ->  WHERE    EmployeeNO = 27); Query OK, 1 row affected (0.01 sec) Records: 1  Duplicates: 0  Warnings: 0 mysql> mysql> mysql> drop table teams; Query OK, 0 rows affected (0.00 sec) mysql> drop table teams_copy4; Query OK, 0 rows affected (0.00 sec)