NoSQL delete by value
Currently the NoSQL delete only allows for a delete by hash value(s). It would be helpful to allow for delete by value
Comments: 2
-
15 Jul, '21
Lucky victoryI think deleting by value would be a bit risky, what if you have same value in multiple places wouldn't that delete the rest?
-
15 Jul, '21
Jacob Cohen AdminThis functionality exists in SQL and is commonly used. For example "DELETE FROM dev.dog WHERE owner_name = 'Jake'" would delete all of the dog records with owner_name Jake. This would bring this functionality to NoSQL too.