(async () => {
var res = await select(`select * from users`);
console.log(res);
//нужно чтобы в res пришли данные запроса
})();
function select(query) {
return new Promise( (r, j) => db.query(query,null,(err,data) =>{
if (err) return j(err);
r(data)
}) )
}