Home > OS >  cosmos db best way to delete document
cosmos db best way to delete document

Time:07-01

How can I delete item from cosmos Db container. I am trying below query but no luck.

delete from c where c.ode = '21423423'

CodePudding user response:

The SQL API does not provide facilities for delete, this must be done through the REST API, Storage Explorer etc.

In addition, I saw the official reply that the delete function is not yet supported.

  • Related