I am working to fetch data of listed users and I have an array of users like
var result_user_id = [
{
"id": 19
},
{
"id": 20
}
];
and I tried something like
connection.query(
"select * from `contents` where `user_is` IN "+ result_user_id,
function( err_user, result_user ) {
}
);
but unable to fetch related data. how to do that in node js.
result_user_id?