我正在尝试从 id 项中获取最大值。我正在使用ScanIndexForward:false,它返回 id 值的desc顺序,这些值无法按预期工作,现在它从表中提供相同的插入顺序。
请参阅下面的代码,如果需要进行任何更改,请提供建议。
var params1 = {
TableName: "Test",
Limit:3,
ProjectionExpression: 'id',
ScanIndexForward:false,
};
docClient.scan(params1, function (err, data) {
if (err) {
console.error("Unable to query. Error:", JSON.stringify(err, null, 2));
} else {
console.log("Query succeeded."+JSON.stringify(data, null, 2));
}
});
谢谢,