आप इस तरीके को भी आजमा सकते हैं
मान लें कि mytable निम्नलिखित कॉलम शामिल हैं:नाम, ईमेल
var inserts = [];
inserts.push(['name1', 'email1']);
inserts.push(['name2', 'email2']);
conn.query({
sql: 'INSERT into mytable (name, email) VALUES ?',
values: [inserts]
});
यह काम करना चाहिए