InterviewSolution
Saved Bookmarks
| 1. |
How to pass an array in insert query using node js? |
|
Answer» The array of records can easily be bulk inserted into the node.js. Before insertion, you have to convert it into an array of arrays. ExampleVAR mysql = require('node-mysql'); |
|