can we delete multiple records in dynamo db only through range key?
I\'m trying to do like this sql statement
delete from employee where emplo
@Kannaiyan thanks for your comments....
i found the solution with dynamoDB with java http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/JavaDocumentAPICRUDExample.html
DeleteItemSpec deleteItemSpec = new DeleteItemSpec().withPrimaryKey("Id", 120)
.withConditionExpression("#ip = :val").withNameMap(new NameMap().with("#ip", "InPublication"))
.**withValueMap(new ValueMap()**.withBoolean(":val", false)).withReturnValues(ReturnValue.ALL_OLD);
fetching the records with key, value pair and storing it in "withValueMap(new ValueMap()" and this helps me.
Thanks.