I've got a DynamoDB table containing 'n' Book title in only one dynamoDB Item (and this freak me out)
in this structure, rentBook is the table on dynamoDB, with 2 attributes:
String StudentID
StringSet BookTitle // something like:["title1","title2","title3"]
In SQL I would have write something like that
SELECT StudentID
FROM RentBook
WHERE BookTitle = "title1" OR BookTitle = "title2"
but with Dynamo i can't get the right results :( anyone can help me?
question 2: Is this table structure appropriate when the number of rows increases?