我正在处理一些代码。我正在尝试从具有特定值或布尔值的列返回行。
当前返回的行太多,以致于ordord API无法返回。因此,要使其正常工作,我只需要发送给不和谐的信息就需要将其返回。
我该怎么做?我问是因为我不知道要查询的术语。
bot.on("message", async message => {
if (message.author.bot) return;
if (message.channel.type === "dm") return;
let messageArray = message.content.split(" ");
let command = messageArray[0];
let args = messageArray.slice(1);
if (!command.startsWith(prefix)) return;
var param1 = "string one"
var param2 = "string two"
if (command === `${prefix}skills`) {
connection.query("CALL GroupSkillRequirementReport(?,?)", [param1, param2], function(error, results, fields) {
if (error) {
console.log(error);
return;
}
// Returning all rows, needs to return rows where col 5 = 0
var sqlReturn = JSON.parse(JSON.stringify(results[0]));
message.channel.send('```' + util.inspect(sqlReturn) + '```');
})
}
});