Entrada múltipla de dados ao mesmo tempo no MySQL?
A seguir está a sintaxe:
insert into yourTableName values(yourValue1,yourValue2,.....N),
(yourValue1,yourValue2,.....N),
(yourValue1,yourValue2,.....N),
(yourValue1,yourValue2,.....N),
.
.
.
N
Vamos criar uma tabela:
mysql> create table demo56
−> (
−> id int,
−> first_name varchar(20),
−> last_name varchar(20),
−> age int
−> );
Query OK, 0 rows affected (1.91 sec)
Insira alguns registros na tabela com a ajuda do comando insert:
mysql> insert into demo56 values(1,'John','Smith',23),
−> (2,'David','Miller',21),
−> (3,'Chris','Brown',22),
−> (4,'Carol','Taylor',20);
Query OK, 4 rows affected (0.10 sec)
Records: 4 Duplicates: 0 Warnings: 0
Exiba os registros da tabela usando a instrução select:
mysql> select *from demo56;
Isso produzirá a seguinte saída:
+------+------------+-----------+------+
| id | first_name | last_name | age |
+------+------------+-----------+------+
| 1 | John | Smith | 23 |
| 2 | David | Miller | 21 |
| 3 | Chris | Brown | 22 |
| 4 | Carol | Taylor | 20 |
+------+------------+-----------+------+
4 rows in set (0.00 sec)