从精选平均中获得结果

时间:2018-01-28 20:43:43

标签: javascript node.js

我试图获得SQL AVG的结果。

console.log(results[0]) show me this:
RowDataPacket { 'AVG(rapportqualiteprix)': 1.333333 }

但是当我想用这个javascript命令获取值时,我得到一个错误,就像这不是一个函数。

我的命令:

results[0].AVG(rapportqualiteprix) 

帮助

1 个答案:

答案 0 :(得分:0)

AVG(rapportqualiteprix)是一个关键,而不是function。查询运行时它是function,但它是Javascript中的项键。你可以通过这种方式获得它的价值:

results[0]['AVG(rapportqualiteprix)']