I am using Amazon Dynamodb but do not have much experience. I have Prices table like this:
Id | InsertionDate | ProductName | ShopName | Price
There can be diffe
you cant do it.
you can query dynamodb only on his indexes (hash-range keys, or global secondary keys.)
in order to query dynamodb, you need at least to query on your 'hash' key, and you will get ordered results on your range key (if you have range key)
http://docs.aws.amazon.com/amazondynamodb/latest/gettingstartedguide/Welcome.html
http://www.allthingsdistributed.com/2013/12/dynamodb-global-secondary-indexes.html