DynamoDB Query to get all rows between two string prefixes -
i'm storing attendance data per school/class/section/subject follows
partition_key => schoolid + classid + sectionid + subjectid rangekey => ts + studentid
my requirement search attendance records given partition key between timestamp ts1 , ts2.
essentially, i'd need find range keys starting ts1 , ending ts2 + infinity. there way perform such query in dynamodb?
Comments
Post a Comment