Mysql
 sql >> Database >  >> RDS >> Mysql

inserisci più righe in mysql tramite node.js

Puoi provare anche questo approccio

diciamo che mytable include le seguenti colonne:nome, email

var inserts = [];
inserts.push(['name1', 'email1']);
inserts.push(['name2', 'email2']);
conn.query({
sql: 'INSERT into mytable (name, email) VALUES ?',
values: [inserts]
});

Questo dovrebbe funzionare