例如,如果我的Question
表的列有question_id
,options
,timestamp
,我必須檢索所有隻有'question_id'的值。如何從亞馬遜DynamoDB的特定列中檢索所有值?
可能嗎?
例如,如果我的Question
表的列有question_id
,options
,timestamp
,我必須檢索所有隻有'question_id'的值。如何從亞馬遜DynamoDB的特定列中檢索所有值?
可能嗎?
首先,您需要使用Scan
操作讀取所有項目,而不管任何鍵值。
其次,您可以使用projection expression
指定服務器端返回值的特定列(以節省網絡帶寬)。見documentation page。
一般來說,是的。要回答您的問題,請提供表格方案和您希望獲得幫助的API(至少有3種方法可從DynamoDB以Java方式獲取數據) –