Reputation: 836
How do we achieve the similar functionality of distinct keyword from SQL in Amazon DynamoDB?
Upvotes: 9
Views: 24639
Reputation: 10056
dyanamo db is not support this kind of functionality, but you can achieve this in some ways (client side, lambda on dynamodb stream the updates another table with distinct values..)
you can find a good answer here: Retrieve distinct values from the hash key - DynamoDB
Upvotes: 9